* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "SST Heavy";
  src: local("SST Heavy"), local("SST-Heavy"),
    url("../font/SST-Heavy.woff2") format("woff2"),
    url("../font/SST-Heavy.woff") format("woff"),
    url("../font/SST-Heavy.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "SST Light";
  src: local("SST Light"), url("../font/SSTLight.TTF") format("truetype");
}
@font-face {
  font-family: "SST Medium";
  src: local("SST Medium"), url("../font/SSTMedium.TTF") format("truetype");
}
@font-face {
  font-family: "SST Roman";
  src: local("SST Roman"), url("../font/SST-Roman.ttf") format("truetype");
}
@font-face {
  font-family: "SST Bold";
  src: local("SST Bold"), url("../font/SSTBold.TTF") format("truetype");
}
@font-face {
  font-family: "Mandai Bold";
  src: local("Mandai Bold"),
    url("../font/MandaiValueSerif-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Mandai Regular";
  src: local("Mandai Regular"),
    url("../font/MandaiValueSerif-Regular.ttf") format("truetype");
}
:root {
  /* fonts */
  --sst-light: "SST Light";
  --sst-heavy: "SST Heavy";
  --sst-medium: "SST Medium";
  --sst-roman: "SST Roman";
  --sst-bold: "SST Bold";
  --mandai-bold: "Mandai Bold";
  --mandai-regular: "Mandai Regular";

  /* colors */
  --text-333: #333333;
  --text-000: #000000;
  --text-fff: #ffffff;
  --bg-333: #333333;
  --bg-000: #000000;
  --bg-fff: #ffffff;
  --text-f8d349: #f8d349;
  --text-f8ecd2: #f8ecd2;
  --text-010000: #010000;
  --text-233420: #233420;

  /* font size */
  --font-1em: 1em;
  --font-2em: 2em;
  --font-3em: 3em;
  --font-4em: 4em;
  --font-5em: 5em;
  --font-6em: 6em;
  --font-7em: 7em;

  /* padding */
  --padding-1em: 1em;
  --padding-2em: 2em;
  --padding-3em: 3em;
  --padding-4em: 4em;
  --padding-5em: 5em;
  --padding-6em: 6em;
  --padding-7em: 7em;

  /* margin */
  --margin-1em: 1em;
  --margin-2em: 2em;
  --margin-3em: 3em;
  --margin-4em: 4em;
  --margin-5em: 5em;
  --margin-6em: 6em;
  --margin-7em: 7em;
}

/* padding & margin */
.padding-1em {
  padding: var(--padding-1em);
}
.padding-2em {
  padding: var(--padding-2em);
}
.padding-3em {
  padding: var(--padding-3em);
}
.padding-4em {
  padding: var(--padding-4em);
}
.padding-5em {
  padding: var(--padding-5em);
}
.padding-6em {
  padding: var(--padding-6em);
}
.padding-7em {
  padding: var(--padding-7em);
}

.margin-1em {
  margin: var(--margin-1em);
}
.margin-2em {
  margin: var(--margin-2em);
}
.margin-3em {
  margin: var(--margin-3em);
}
.margin-4em {
  margin: var(--margin-4em);
}
.margin-5em {
  margin: var(--margin-5em);
}
.margin-6em {
  margin: var(--margin-6em);
}
.margin-7em {
  margin: var(--margin-7em);
}

/* fonts */
.font-heavy {
  font-family: var(--sst-heavy);
}
.font-roman {
  font-family: var(--sst-roman);
}
.font-light {
  font-family: var(--sst-light);
  font-weight: 300;
}
.font-medium {
  font-family: var(--sst-medium);
  font-weight: 500;
}
.font-bold {
  font-family: var(--sst-bold);
  font-weight: 700;
}

/* colors & bg colors */
.text-light {
  color: var(--text-fff);
}
.text-000 {
  color: var(--text-000) !important;
}
.text-333 {
  color: var(--text-333);
}
.bg-light {
  color: var(--bg-fff);
}
.bg-000 {
  color: var(--bg-000);
}
.bg-333 {
  color: var(--bg-333);
}
.text-233420 {
  color: #233420;
}
.bg-d0eef6 {
  background-image: linear-gradient(#d0eef6, #ebe6a4);
}
.text-3876af {
  color: #3876af !important;
}
.bg-3876af {
  background-color: #3876af !important;
}
.bg-f1bf39 {
  background-color: #f1bf39 !important;
}
.bg-882b24 {
  background-color: #882b24 !important;
}
.bg-f1bf39 p {
  color: var(--text-000) !important;
}

/* flex */
.flex {
  display: flex;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}

/* img responsive */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* sony */
#s-main-wrapper {
  width: 100%;
}
/* .max-width-sony {padding: 0 38px;} */
.max-width-sony {
  max-width: 1200px;
  margin: 0 auto;
}
.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}
/* .z-index-4{
  z-index: 4 !important;
} */

/* basic */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
label {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
p {
  margin-bottom: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  margin: auto;
  overflow-x: hidden;
}

a,
a:active,
a:hover,
a:focus,
button,
button:active,
button:hover,
button:focus {
  outline: none;
  border: none;
  background: transparent;
}

/* content */
.main-bg {
  background-image: url("../images/bg-1.jpg");
  min-height: 230.375rem;
  height: 100%;
  background-position: center -8rem;
  background-size: 100%;
  width: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  padding-bottom: 22rem;
  background-color: #fcf9d5;
}
.divheight {
  min-height: 40rem;
}
.main-header {
  position: relative;
  z-index: 2;
}
.photography-head {
  font-size: 8.128rem;
  color: var(--text-f8d349);
  font-weight: 700;
  font-family: var(--mandai-bold);
  text-align: center;
}
.header-text {
  max-width: 880px;
  text-align: center;
  margin: 4rem auto;
  margin-top: 36.5rem;
}
.insta-photo-head {
  font-size: 4.948rem;
  letter-spacing: 0.1px;
  color: var(--text-f8ecd2);
  font-family: var(--sst-medium);
  text-align: center;
}
.estimated-date {
  /* font-size: 2.8rem; */
  font-size: 2.644rem;
  color: var(--text-f8d349);
  font-weight: 400;
  /* font-family: var(--sst-roman); */
  font-family: var(--sst-bold);
  text-align: center;
  display: block;
}
.label-con {
  border: 1px solid #fff;
  border-radius: 1rem;
  padding: 0.5rem 0.5rem;
  padding-bottom: 0.9rem;
  max-width: 16.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30%;
}
.header-para {
  font-size: 2.474rem;
  color: var(--text-fff);
  font-weight: 400;
  font-family: var(--sst-roman);
  text-align: center;
  line-height: 1.2;
  margin-top: 0.5rem;
}
.labels.flex {
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.label-con {
  border: 1px solid #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  padding-bottom: 0.9rem;
  max-width: 16.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30%;
}
.label-con p {
  font-size: 2.474rem;
  font-family: var(--sst-roman);
  color: var(--text-fff);
  line-height: 1;
}
.label-con span {
  font-family: var(--sst-bold);
  font-size: 2.474rem;
  display: inline-block;
}
.welcome-para {
  /* font-size: 2.474rem; */
  font-size: 2.226rem;
  font-family: var(--sst-roman);
  color: var(--text-fff);
  text-align: center;
  line-height: 1.3;
  max-width: 79%;
  margin: auto;
  margin-top: 1.4rem;
}
.leaf-text {
  position: relative;
  top: 5rem;
  padding-left: 8rem;
  /* top: 11rem;
  padding-left: 10rem; */
}
.leaf-text p {
  font-size: 2.026rem;
  font-family: var(--sst-roman);
  /* color: var(--text-000); */
  color: var(--text-000);
  margin-bottom: 1rem;
}
/* .leaf-text .logo img {
  width: 300px;
}
.category {
  margin-top: 28rem;
  overflow: hidden;
}
.cetegory-head {
  font-size: 6.361rem;
  font-family: var(--sst-bold);
  font-weight: 700;
  color: var(--text-fff);
  line-height: 1;
}
.cetegory-head span {
  font-size: 15.266rem;
  display: inline-block;
  margin-right: 1rem;
  line-height: 0.85;
}
.cetegory-head.theme-head span{
  line-height: .85;
  font-size: 16.2rem;
} */

/* .cetegory-flex.simple-step-head{
  align-items: center;
} */
/* .cetegory-flex.simple-step-head span{
  line-height: .87;
} */
/* .category-flex {
  display: flex;
  justify-content: center;
}
.category-flex div{
  line-height: 1.1;
} */
/* .cetegory-flex div.simple-step-head{
  line-height: .98  !important;
} */
/* .category-bg {
  background-image: url("../images/category-bg.png");
  height: 100%;
  background-position: top center;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  min-height: 90rem;
}
.position-one {
  position: relative;
  top: 8rem;
  left: 10rem;
  max-width: 80%;
}
.position-two {
  position: relative;
  top: 22rem;
  right: 11rem;
  margin-left: auto;
  max-width: 80%;
}
.position-three {
  position: relative;
  top: 37rem;
  left: 10rem;
  max-width: 80%;
}
.category-text h3 {
  font-size: 3.499rem;
  font-family: var(--sst-bold);
  color: var(--text-010000);
}
.category-text p {
  font-size: 2.226rem;
  font-family: var(--sst-light);
  color: var(--text-010000);
  line-height: 1;
  margin: 2rem 0;
}
.category-text small {
  font-size: 1.59rem;
  font-family: var(--sst-light);
  color: var(--text-010000);
}
.category-text.position-two p,
.category-text.position-two h3 {
  text-align: right;
}
.category {
  overflow-x: hidden;
}
.themes {
  margin-top: 14rem;
}
.themes-con {
  margin-top: 3rem;
}
.theme {
  max-width: 85%;
  margin: auto;
  cursor: pointer;
  margin-bottom: 2.5rem;
}
.easy-steps {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.leaf-bg {
  position: relative;
}
.mb-howto {
  margin-bottom: 20px !important;
}
.left-leaf {
  position: absolute;
  top: -10rem;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  max-width: 25rem;
}
.bottom-leaf {
  position: absolute;
  top: 36rem;
  left: 0;
  z-index: 2 !important;
  height: 100%;
  width: 100%;
  z-index: 0;
  max-width: 12.5rem;
}
.right-leaf {
  position: absolute;
  top: 12rem;
  right: 0;
  margin-left: auto;
  height: 100%;
  width: 100%;
  z-index: 0;
  max-width: 21.875rem;
}
.easy-step-card {
  border-radius: 25px;
  background-color: #f9ecd0;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
  max-width: 100%;
  margin: auto;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  min-height: 63rem;
}
.easy-step-card h2 {
  font-size: 9.541rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: var(--mandai-bold);
  font-size: 700;
}
.easy-step-card p {
  font-size: 3.3rem;
  color: var(--text-000);
  font-family: var(--sst-bold);
  text-align: center;
  max-width: 90%;
  line-height: 1.2;
  margin: auto;
}
.easy-step-card p.max-width {
  max-width: 70%;
}
.swiper-button-next,
.swiper-button-prev {
  font-weight: 700;
}
.swiper-button-next {
  right: 1rem;
}
.swiper-button-prev {
  left: 1rem;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  color: var(--text-233420);
}
.step-card {
  max-width: 70%;
  border-radius: 25px !important;
}
.swiper-backface-hidden .swiper-slide {
  border-radius: 25px !important;
}
.submission-para {
  max-width: 75%;
  margin: 3rem auto;
  margin-bottom: 3.75rem;
  position: relative;
  z-index: 2;
}
.card-label {
  padding: 0rem 1rem;
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: var(--bg-000);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  margin: 2rem auto;
  border-radius: 0.5rem;
}
.card-label p {
  font-family: var(--sst-roman);
  color: var(--text-fff);
  text-align: center;
  font-size: 3.499rem;
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}
.card-labelmandai {
  padding: 0.5rem 1rem;
  padding-top: 0.1rem;
  background-color: var(--bg-000);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: 2rem auto;
  border-radius: 0.5rem;
}
.card-mandai-text {
  max-width: 80%;
  margin: auto;
}
.card-mandai-text p {
  font-family: var(--sst-roman);
  color: var(--text-000);
  text-align: center;
  font-size: 3.499rem;
  margin-top: 0;
  max-width: 100%;
  width: 100%;
  line-height: 1.1;
}
.card-labelmandai p {
  font-family: var(--sst-roman);
  color: var(--text-fff);
  text-align: center;
  font-size: 2.544rem;
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}
.card-label1 {
  padding: 0.5rem 1.5rem;
  padding-top: 0rem;
  padding-bottom: 0.8rem;
  background-color: #3e501d;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: 2rem auto;
  margin-bottom: 0.1rem;
  border-radius: 0.5rem;
}
.card-label1 p {
  font-family: var(--sst-bold);
  color: var(--text-fff);
  text-align: center;
  font-size: 3.499rem;
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}
.card-labelsonyphoto {
  padding: 0.5rem 2rem;
  padding-top: 0rem;
  padding-bottom: 0.8rem;
  background-color: #3a7141;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: 3rem auto;
  margin-bottom: 0.1rem;
  border-radius: 0.5rem;
}
.card-labelsonyphoto p {
  font-family: var(--sst-roman);
  color: var(--text-fff);
  text-align: center;
  font-size: 3.499rem;
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}
.card-labelsonyphotopara {
  display: block;
  font-size: 2.703rem;
  font-family: var(--sst-roman);
  color: var(--text-000);
  text-align: center;
}

.plus-image {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.plus-image img {
  display: block;
  margin: auto;
}
.submission-para p {
  font-size: 2.226rem;
  text-align: center;
  font-family: var(--sst-roman);
  color: #22321e;
  line-height: 1.2;
}
.submission-para p strong {
  font-weight: 700;
  font-family: var(--sst-bold);
}
.mandai-image {
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}
.bird-bg {
  position: relative;
  top: 100px;
  left: 0;
}
/*Steps*/
.bg-steps {
  background-image: url("../images/bg-2.jpg");
  height: 100%;
  background-position: top center;
  background-size: 100% 100%;
  width: 100%;
  background-repeat: no-repeat;
}
.disabled_swiper_button {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.mb-3-5 {
  margin-bottom: 3.5rem !important;
}
.logo img{
  max-width: 33%;
}
/*Winners*/
.winner-text-color {
  color: #f5d375;
}
.bg-winners {
  background-image: url("../images/bg-3.jpg");
  height: 100%;
  background-position: top center;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  min-height: 90rem;
  margin-top: -1px;
  padding-top: 4rem;
}
.grand-winner {
  margin-top: 4rem;
}
.cat-winners {
  margin-top: 7rem;
}
.runnerup,
.honorable {
  margin-top: 7rem;
}
.prizes-head {
  font-size: 3.817rem;
  font-family: var(--sst-medium);
}
.subhead-prizes {
  margin-top: 40px !important;
  font-size: 2.5rem;
  color: #e0d9b3;
  font-family: var(--sst-roman);
}
.cat-winners .prizes-head {
  line-height: 3.3rem;
}
.cat-winners .prizes-head span,
.runnerup .prizes-head span {
  font-size: 2.121rem;
  color: var(--text-fff);
  font-family: var(--sst-roman);
  display: block;
  margin-top: 1rem;
  word-spacing: 4px;
}
.cat-winners .prizes-img {
  margin-top: 1rem;
}
.runnerup .prizes-head span {
  margin-top: 0;
}
.cat-winners .prizes-head font {
  color: var(--text-fff);
  font-size: 2.5rem;
  font-family: var(--sst-medium);
}
.prize-items {
  color: var(--text-fff);
  text-align: center;
  display: inline-block;
  vertical-align: top;
  font-size: 2.226rem;
  font-family: var(--sst-roman);
  line-height: 1.2;
  /* min-height: 177px; */
}
.grand-winner .prize-items.left-item {
  padding-bottom: 3rem;
}
.grand-winner .prize-items.middle-item {
  padding-bottom: 1.4rem;
}
.cat-winners .prize-items.middle-item {
  padding-bottom: 4rem;
}
.cat-winners .prize-items.left-item {
  padding-bottom: 2.5rem;
}
.runnerup .prize-items.middle-item {
  padding-bottom: 2rem;
}
.runnerup .prize-items.left-item {
  padding-bottom: 2.4rem;
}
span.worth296 {
  max-width: 10rem !important;
  display: block;
  margin: auto;
}
.prize-items span {
  font-size: 1.59rem;
  line-height: 1;
  color: rgba(245, 245, 245, 0.733);
  font-family: var(--sst-roman);
}
.prize-items.middle-item span,
.prize-items.right-item span {
  max-width: 250px;
  display: block;
  line-height: 1.2;
}
.middle-item {
  padding-left: 20px;
  padding-right: 20px;
  border-left: 1px dashed #fff;
  border: 5px solid transparent;
  border-image: url("../images/dashed.png") 10 round;
}
.left-item {
  padding-right: 20px;
}
.right-item {
  padding-left: 20px;
}
.left-item-honorable {
  padding-right: 30px;
  border-right: 1px dashed #fff;
  border-right: 5px solid transparent;
  border-image: url("../images/dashed.png") 10 round;
}
.right-item-honorable {
  padding-left: 30px;
}
.honorable .prizes-img img:first-child {
  margin-left: -30px;
}
.prizes-desc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.prizes-img {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.prizes-img.mentions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.left-item-honorable.mention,
.right-item-honorable.mention {
  font-size: 2.068rem;
}
.right-item-honorable.mention {
  max-width: 430px;
}
.honorable .prize-items.left-item-honorable {
  min-width: 35%;
}
.bottom-right-leaf {
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 80rem;
  max-width: 22rem;
}
.grand-winner .prize-items.right-item,
.cat-winners .prize-items.right-item {
  max-width: 20%;
}
.cat-winners .prize-items.left-item,
.runnerup .prize-items.left-item {
  max-width: 19%;
}
*/
/*Judges*/
/* .bg-judges {
  background-image: url("../images/bg-4.jpg");
  height: 100%;
  background-position: top center;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  padding-bottom: 5rem;
  padding-top: 23rem;
}

.judges-pic {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.judges .flex {
  gap: 2rem;
  justify-content: center;
}
.judges-img {
  max-width: 26%;
  margin: 20px;
}
.judges-head div {
  font-size: 6.361rem;
  margin-top: 0rem;
  margin-bottom: 5rem;
}
.judges-head div span {
  font-size: 9.541rem;
} */

/*TnC*/
.tnc {
  background-color: #282828;
}
.tnc-container {
  padding: 3rem 15px;
  text-align: center;
}
.tnc-text {
  font-size: 1.919rem;
  padding-bottom: 10px;
  color: #ffd208;
}
.tnc-button button {
  color: white;
  background-color: #4d4d4d;
  padding: 5px 24px;
  border-radius: 5px;
  font-size: 2.2rem;
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  border: none;
  background: none;
}
.bg-blue {
  background-color: #2980b9;
}
.bg-yellow {
  background: #f1c40f;
}
.bg-red {
  background-color: #c0392b;
}
.modalbox-text {
  padding: 3.5rem;
  min-height: 20rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.modalbox-text strong {
  color: white;
  font-size: 1.2rem;
  font-family: var(--sst-light);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
}
.modalbox-text p {
  margin-top: 1rem;
  color: white;
  display: inline-block;
  vertical-align: top;
  font-size: 1.2rem;
  font-family: var(--sst-light);
  line-height: 1.2;
}
.modalbox-img img {
  object-fit: cover;
}
.hidden {
  display: none;
}
.swiper-slide,
.swiper-wrapper {
  border-radius: 25px;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.overlay.active {
  display: block;
}
.modalbox {
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.25);
  display: none;
  left: calc(50% - 20px);
  margin: 20px;
  max-width: 700px;
  overflow-y: auto;
  position: fixed;
  top: calc(50% - 20px);
  transform: translate(-50%, -50%);
  z-index: 100;
}
.modalbox.active {
  display: block;
}
/* .cat-image.video-categ-three{
  margin-bottom: 0;
} */
.demo {
  cursor: pointer;
}
.grand-winner {
  margin-top: 26rem;
}
.drop-shadow {
  filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.5));
}
.grand-winner-h {
  margin-top: 3.5rem;
}
.profile-name p a {
  font-family: var(--sst-roman);
  color: var(--text-000);
  font-size: 2.863rem;
}
.profile-picture {
  max-height: 14.063rem;
  max-width: 14.063rem;
  min-height: 14.063rem;
  min-width: 14.063rem;
  /* border: 1px solid #000; */
  border-radius: 100%;
  /* overflow: hidden; */
}
.mr-2 {
  margin-right: 1rem;
}
.grand-winner-profile {
  margin-top: 3.5rem;
}
.sony-runner-img-con img,
.sony-winner-img-con img,
.open-runner-img-con img,
.open-winner-img-con img,
.video-runner-img-con img,
.video-winner-img-con img {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}
.grand-winner-h.d-flex img {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.profile-para-con {
  max-width: 69%;
  margin: auto;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.profile-para-con p {
  font-size: 2.226rem;
  font-family: var(--sst-roman);
  color: var(--text-000);
  text-align: center;
  line-height: 1.3;
}
.specs {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 1.908rem;
  font-family: var(--sst-roman);
  color: var(--text-000);
  line-height: 1.5;
}
.winnerrunnerup {
  background: #adc19d;
  /* padding-bottom: 5rem; */
  position: relative;
}
.mb-50 {
  margin-bottom: -50rem;
}
.mb-75 {
  margin-bottom: -75rem;
}
.leaf3 {
  position: absolute;
  left: 0;
  /* top: -340px; */
  top: -21.25rem;
  width: 100%;
  max-width: 30%;
  height: 100%;
  z-index: 2;
}
.small-desc {
  display: block;
  text-align: center;
  color: var(--text-fff);
  font-size: 2.226rem;
  font-family: var(--sst-light);
  margin-top: 1.2rem;
}
.dashed-border {
  max-width: 70%;
  width: 100%;
  margin: auto;
  margin-top: 3.5rem;
}
.standup {
  position: relative;
  z-index: 5;
}
.sony-categ-head {
  color: var(--text-fff);
  font-size: 3.817rem;
  text-align: center;
  font-family: var(--sst-medium);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cat-image {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.category-image-con {
  margin-top: 2rem;
}
.grayscale {
  filter: grayscale(1);
}
.sony-categ-result {
  background-image: url("../images/popup-bg.jpg");
  padding-top: 1rem;
  padding-bottom: 10rem;
  width: 100%;
  min-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.arrow,
.close {
  margin-top: 4rem;
  cursor: pointer;
}
.arrow {
  margin-left: 3rem;
}
.close {
  margin-right: 3rem;
}
.max-width {
  max-width: 80%;
  margin: auto;
  margin-top: 2rem;
}
.label-con {
  background: #2980b9;
  border: none;
  max-width: 100%;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.bg-2980b9 {
  background: #2980b9;
}
.bg-edbc39 {
  background: #edbc39;
}
.bg-862a23 {
  background: #862a23;
}
.text-5e8756 {
  color: #5e8756 !important;
}
.text-366974 {
  color: #366974 !important;
}
#back-top-open,
#back-top-video {
  margin-top: 3rem !important;
}
.mentions {
  background: #000;
}
.pt-4 {
  padding-top: 4rem;
}
.mention-header {
  margin-bottom: 4rem;
}
.winners-notify {
  text-align: center;
  max-width: 60%;
  margin: 5rem auto;
  margin-bottom: 0;
  padding-bottom: 5rem;
}
.winners-notify p {
  font-size: 2.226rem;
  color: var(--text-fff);
}
.winners-notify p a {
  color: var(--text-fff);
  font-family: var(--sst-bold);
}
.shape-img {
  background: #000;
  margin-bottom: -2px;
}
.shape-img img {
  width: 100%;
}

.popup-video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  z-index: 1100;
  display: none;
  max-width: 1200px;
  margin: auto;
}
.video-con {
  z-index: 999;
  max-height: calc(100vh - 150px);
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-con {
  position: relative;
}
.video-con video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 99;
  max-height: calc(100vh - 150px);
}
.flex-class {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.close-video {
  position: absolute;
  top: -60px;
  right: 0rem;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1000;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
.sony-categ-detail-con .label-para,
.open-categ-detail-con .label-para {
  max-width: 450px;
  margin: auto;
}
.candidate-category {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#caption {
  color: #cccccc;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.gallery-section {
  background: #000000;
}
.text-white {
  color: #fff;
}
.gallery-con {
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
  margin: auto;
  justify-content: center;
}
.gallery-con img {
  margin: 5px;
}
#app {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 3px;
  -moz-column-gap: 3px;
  column-gap: 3px;
}
#app img {
  width: 100%;
  margin-bottom: 3px;
  position: relative;
  z-index: 1;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

.categ-text p {
  font-size: 2.544rem;
  font-family: var(--sst-medium);
  color: var(--text-000);
}
.label-con p {
  font-size: 2.544rem;
  font-family: var(--sst-roman);
  color: var(--text-fff);
}
.win-heading {
  font-family: var(--sst-bold);
  text-align: center;
  color: var(--text-000);
  font-size: 5.089rem;
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
}
.runner-heading {
  font-family: var(--sst-roman);
  text-align: center;
  color: var(--text-000);
  font-size: 3.181rem;
  margin-top: 4rem !important;
  margin-bottom: 2rem !important;
}

.winner-name p a {
  font-size: 2.863rem;
  font-family: var(--sst-roman);
  color: var(--text-000);
  display: block;
  text-align: center;
  margin-top: 2rem;
}
.winner-spec span {
  font-size: 1.908rem;
  font-family: var(--sst-roman);
  color: var(--text-000);
  display: block;
  text-align: center;
}
.winnerrunnerup::after {
  position: absolute;
  content: "";
  background-image: url("../images/leaf-shape.png");
  width: 100%;
  height: 100%;
  background-size: 100%;
  top: -16.625rem;
  left: 0;
  background-repeat: no-repeat;
}
.set-max-width {
  position: relative;
  width: 100%;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.set-max-width .close {
  margin-left: auto;
  display: block;
  text-align: right;
  margin-right: 0;
  font-size: 3rem;
  color: #fff;
}
.set-max-width .next {
  right: -55px;
}
.set-max-width .prev {
  left: -55px;
}
.modalbox {
  display: none;
  position: fixed !important;
  z-index: 1200 !important;
  width: 100% !important;
  height: 100vh !important;
  overflow: auto !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  max-width: 1200px;
}
.modal-content {
  position: relative;
  background-color: none;
  margin: auto;
  padding: 0;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  max-width: 610px;
}
#app img {
  margin-top: 0;
}
.leaf2 {
  position: absolute;
  z-index: 5;
  right: 0;
  top: -33.75rem;
  max-width: 20%;
  width: 100%;
}
#back-top-open .dashed-border,
#back-top-video .dashed-border {
  margin-top: 4rem;
}
.d-md-none {
  display: none;
}
.hide-on-click{
  max-width: 75%;
}
.myslide-video, .myslide-video-kng{
  max-width: 70%;
}
/* responsive */
@media only screen and (max-width: 1030px) {
  .submission-para {
    max-width: 90%;
  }
  .leaf-text {
    padding-left: 5.6rem;
    top: 11.5rem;
  }
  .position-one {
    top: 10rem;
    left: 7rem;
  }
  .position-two {
    top: 22rem;
  }
  .position-three {
    top: 35rem;
    left: 7rem;
  }
  .card-label p:first-child {
    font-size: 3rem;
  }
  .cat-winners .prizes-head span,
  .runnerup .prizes-head span {
    word-spacing: 2px;
  }
  .grand-winner .prize-items.right-item,
  .cat-winners .prize-items.right-item {
    max-width: 23%;
  }
  .cat-winners .prize-items.left-item,
  .runnerup .prize-items.left-item {
    max-width: 22%;
  }
  .bottom-leaf {
    top: 46rem;
    max-width: 11rem;
  }
  .step-card {
    max-width: 75%;
  }
  .honorable .prize-items.left-item-honorable {
    min-width: 40%;
  }
  .bird-bg {
    max-width: 60%;
  }
  .modalbox-text strong {
    font-size: 2.5rem;
  }
  .modalbox-text p {
    font-size: 2rem;
  }
  .modalbox {
    min-width: 80%;
  }
  .leaf-text {
    top: 2.5rem;
  }
  .leaf-text .logo img {
    width: 282px !important;
  }
  .header-text {
    margin-top: 24rem;
    max-width: 750px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -79.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 18.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 80%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
  .set-max-width .modal-content {
    max-width: 550px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 25px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 25px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 560px;
  }
  .video-con .close-video {
    top: -65px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .main-bg {
    min-height: 215.375rem;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .mb-50 {
    margin-bottom: -42rem;
  }
  .mb-75 {
    margin-bottom: -65rem;
  }
}

@media only screen and (max-width: 992px) {
  .submission-para {
    max-width: 90%;
  }
  .leaf-text {
    padding-left: 5rem;
    top: 11.6rem;
  }
  .easy-step-card p.max-width {
    max-width: 80%;
  }
  .leaf-text {
    top: 1.5rem;
  }
  .leaf-text .logo img {
    width: 282px !important;
  }
  .header-text {
    margin-top: 22rem;
    max-width: 750px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -79.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 16.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 80%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  #app {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
  .set-max-width .modal-content {
    max-width: 550px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 25px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 25px;
    top: 60%;
  }
  #caption {
    font-size: 1rem;
  }
  .video-con {
    max-width: 560px;
  }
  .video-con .close-video {
    top: -65px;
  }
  /* .mentions {
  padding-top: 24rem;
} */
  .main-bg {
    min-height: 215.375rem;
  }
  .mb-50 {
    margin-bottom: -42rem;
  }
  .mb-75 {
    margin-bottom: -62rem;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
  .header-text {
    max-width: 700px;
  }
  /* .logo {
    max-width: 200px;
  } */
  .leaf-text {
    top: 11rem;
    left: 0rem;
  }
  .leaf-text p {
    font-size: 1.9rem;
  }
  .honorable .prizes-img img {
    display: inline-block;
    width: 45%;
  }
  .left-item {
    padding-right: 12px;
  }
  .right-item {
    padding-left: 12px;
  }
  .middle-item {
    padding-left: 13px;
    padding-right: 13px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 2rem;
    font-weight: 600;
  }
  .swiper-button-prev {
    left: 1rem;
  }
  .swiper-button-next {
    right: 1rem;
  }
  .bottom-leaf {
    top: auto;
    left: 0;
    bottom: -45rem;
    max-width: 10rem;
  }
  .left-leaf {
    top: -6rem;
  }
  .submission-para p {
    font-size: 2.4rem;
  }
  .plus-image {
    max-width: 30px;
    margin: auto;
  }
  .prize-items.middle-item span,
  .prize-items.right-item span {
    max-width: 180px;
  }
  .bird-bg {
    max-width: 60%;
    top: 85px;
  }
  .grand-winner .prize-items.right-item,
  .cat-winners .prize-items.right-item {
    max-width: 24%;
  }
  .subhead-prizes {
    margin-top: 20px !important;
  }
  .easy-step-card p.max-width {
    max-width: 78%;
  }
  .category-text p {
    margin: 1.5rem 0;
  }

  /* .d-md-block{
    display: block !important;
  }
  .d-none{
    display: block !important;
  }
  .d-block{
    display: none !important;
  }
  .d-md-none{
    display: none !important;
  } */
  .leaf-text {
    top: 2.5rem;
  }
  .header-text {
    margin-top: 23rem;
    max-width: 500px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -90.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 19.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 80%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* .d-none{
   display: none;
 }
 .d-block{
   display: block;
 } */
  #app {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
  .set-max-width .modal-content {
    max-width: 550px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 25px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 25px;
    top: 60%;
  }
  #caption {
    font-size: 1.5rem;
  }
  .video-con {
    max-width: 560px;
  }
  .video-con .close-video {
    top: -45px;
  }
  /* .mentions {
  padding-top: 24rem;
} */
  .main-bg {
    min-height: 215.375rem;
  }
  .d-md-block {
    display: block;
  }
  .mb-50 {
    margin-bottom: -42rem;
  }
  .mb-75 {
    margin-bottom: -64rem;
  }
}

@media only screen and (max-width: 720px) {
  .leaf-text {
    top: 2.5rem;
  }
  .header-text {
    margin-top: 18rem;
    max-width: 500px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -90.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 17.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 80%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* .d-none{
   display: none;
 }
 .d-block{
   display: block;
 } */
  #app {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
  .set-max-width .modal-content {
    max-width: 550px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 25px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 25px;
    top: 60%;
  }
  #caption {
    font-size: 1.5rem;
  }
  .video-con {
    max-width: 560px;
  }
  .video-con .close-video {
    top: -45px;
  }
  /* .mentions {
  padding-top: 24rem;
} */
  .main-bg {
    min-height: 215.375rem;
  }
  .d-md-block {
    display: block;
  }
  .mb-50 {
    margin-bottom: -42rem;
  }
  .mb-75 {
    margin-bottom: -60rem;
  }
}

@media only screen and (max-width: 620px) {
  html {
    font-size: 10px;
  }
  .header-para {
    max-width: 565px;
    margin-left: auto;
    margin-right: auto;
  }
  /* .logo {
    max-width: 167px;
  } */
  .leaf-text {
    top: 10rem;
    padding-left: 4rem;
  }
  .theme {
    max-width: 100%;
  }
  .prize-items.right-item {
    max-width: 27%;
  }
  .runnerup .prize-items.right-item {
    min-width: 27%;
  }
  .cat-winners .prize-items.middle-item {
    min-width: 38%;
  }
  .runnerup .prize-items.middle-item {
    min-width: 40%;
  }
  .runnerup .prize-items.left-item,
  .cat-winners .prize-items.left-item {
    max-width: 24%;
  }
  .bird-bg {
    max-width: 55%;
    top: 45px;
  }
  .bg-winners {
    padding-top: 1rem;
  }
  .honorable .prize-items.left-item-honorable {
    min-width: 45%;
  }
  .bg-judges {
    padding-top: 20rem;
  }
  .judges-head div {
    margin-bottom: 2rem;
  }
  .judges-pic {
    margin-top: 0;
    margin-bottom: 0;
  }
  .judges-img {
    min-width: 26%;
    margin: 1rem 2rem;
  }
  .position-one {
    top: 12rem;
    left: 5rem;
  }
  .position-two {
    right: 6rem;
  }
  .position-three {
    top: 38rem;
    left: 5rem;
  }
  .themes {
    margin-top: 10rem;
  }
  .modalbox-text strong {
    font-size: 2.5rem;
  }
  .modalbox-text p {
    font-size: 2rem;
  }
  .leaf-text {
    top: 1.5rem;
  }
  .header-text {
    margin-top: 21rem;
    max-width: 410px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -87.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 17.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  /* 
 .d-none{
   display: none;
 }
 .d-block{
   display: block;
 } */
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 350px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 360px;
  }
  .video-con .close-video {
    top: -35px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -42rem;
  }
  .mb-75 {
    margin-bottom: -61.8rem;
  }
  .hide-on-click{
    max-width: 100%;
  }
  .myslide-video, .myslide-video-kng{
    max-width: 100%;
  }
}

@media only screen and (max-width: 576px) {

  .position-one,
  .position-three {
    left: 4rem;
  }
  .position-two {
    right: 3rem;
  }
  .left-item {
    padding-right: 10px;
  }
  .right-item {
    padding-left: 10px;
  }
  .middle-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  p.text-size-576 {
    font-size: 3.4rem;
  }
  .submission-para {
    max-width: 80%;
  }
  .card-labelsonyphoto {
    padding-bottom: 0.5rem;
  }
  div.card-labelsonyphoto.bg-3876af {
    padding-bottom: 0.5rem;
  }
  .left-leaf {
    max-width: 20rem;
  }
  .grand-winner .prize-items.left-item {
    min-width: 33%;
  }
  .honorable .prize-items.left-item-honorable {
    min-width: 45%;
  }
  .leaf-text {
    padding-left: 3rem;
    top: 10.5rem;
  }
  .leaf-text p {
    font-size: 1.8rem;
  }
  /* .logo {
    max-width: 160px;
  } */
  .card-mandai-text {
    max-width: 90%;
  }
  .grand-winner .prize-items.right-item,
  .cat-winners .prize-items.right-item {
    max-width: 26%;
  }
  .cat-winners .prizes-head span,
  .runnerup .prizes-head span {
    word-spacing: 0px;
  }
  .easy-step-card p.max-width {
    max-width: 80%;
  }
  .bottom-leaf {
    bottom: -56rem;
  }
  .step-card {
    max-width: 80%;
  }

  .leaf-text {
    top: 1.5rem;
  }
  .header-text {
    margin-top: 15rem;
    max-width: 410px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -87.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 15.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 350px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 360px;
  }
  .video-con .close-video {
    top: -35px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -57.3rem;
  }
}

@media only screen and (max-width: 526px) {
  html {
    font-size: 9px;
  }
  /* .logo {
    max-width: 140px;
  } */
  .leaf-text p {
    font-size: 1.75rem;
  }
  .position-one {
    top: 8rem;
  }
  .submission-para {
    max-width: 75%;
  }
  .bird-bg {
    top: 30px;
  }
  .bg-winners {
    padding-top: 0rem;
  }
  .easy-step-card p.max-width {
    max-width: 79%;
  }
  .grand-winner .middle-item {
    max-width: 32%;
  }
  .label-con {
    padding-bottom: 1.2rem;
  }
  .leaf-text {
    top: 1.5rem;
  }
  .header-text {
    margin-top: 17rem;
    max-width: 370px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -87.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 15.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 350px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 360px;
  }
  .video-con .close-video {
    top: -35px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -58rem;
  }
}

@media only screen and (max-width: 476px) {
  html {
    font-size: 8px;
  }
  /* .logo {
    max-width: 125px;
  } */
  .left-item {
    padding-right: 5px;
  }
  .right-item {
    padding-left: 5px;
  }
  .middle-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-labelsonyphoto {
    padding-bottom: 0.6rem;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 3rem;
  }
  .plus-image {
    max-width: 20px;
    margin: auto;
  }
  .bg-winners {
    padding-top: 1.5rem;
  }
  .easy-step-card p.max-width {
    max-width: 72%;
  }
  .position-two {
    right: 4rem;
  }
  .label-con {
    padding-bottom: 1rem;
  }
  .leaf-text {
    top: 1.5rem;
  }
  .header-text {
    margin-top: 18rem;
    max-width: 370px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -87.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 17.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -59rem;
  }
}

@media only screen and (max-width: 430px) {
  html {
    font-size: 7px;
  }
  /* .logo {
    max-width: 110px;
  } */
  .position-two {
    right: 4rem;
  }
  .card-labelsonyphoto {
    padding-top: 0.5rem;
  }
  p.text-size-576 {
    font-size: 3.3rem;
  }
  .easy-step-card .text-size-576.max-width {
    max-width: 65%;
  }
  .submission-para {
    max-width: 90%;
  }
  .submission-para p {
    font-size: 2.4rem;
  }
  .bottom-right-leaf {
    top: 95rem;
    max-width: 12rem;
  }
  .label-con {
    padding-bottom: 1.2rem;
  }
  p.text-size-576 {
    max-width: 84%;
  }
  .position-one {
    top: 9rem;
  }
  .submission-para {
    max-width: 73%;
  }
  .position-one,
  .position-three {
    left: 3.5rem;
  }
  .bottom-leaf {
    max-width: 8rem;
  }
  .leaf-text {
    top: 1.5rem;
  }
  .header-text {
    margin-top: 20rem;
    max-width: 370px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -87.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 17.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -60.4rem;
  }
  .main-bg {
    min-height: 202.375rem;
}
}

@media only screen and (max-width: 414px) {
  .leaf-text {
    top: 1.5rem;
  }
  .header-text {
    margin-top: 17rem;
    max-width: 370px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -85.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 16.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -58.6rem;
  }
  .main-bg {
    min-height: 204.375rem;
}
}

@media only screen and (max-width: 391px) {
  .divheight {
    min-height: 39rem;
  }
  .leaf-text {
    top: 1rem;
  }
  .header-text {
    margin-top: 14rem;
    max-width: 370px;
  }
  .welcome-para {
    margin-top: 1rem;
  }
  /* .winnerrunnerup::before {
    bottom: -85.75rem;
} */
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 14.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  /* .mentions {
  padding-top: 26rem;
} */
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -55.6rem;
  }
  .main-bg {
    min-height: 198.375rem;
}
}

@media only screen and (max-width: 376px) {
  html {
    font-size: 6px;
  }
  /* .logo {
    max-width: 94px;
  } */
  p.text-size-576 {
    font-size: 3.1rem;
  }
  div.card-labelsonyphoto.bg-3876af,
  .card-labelsonyphoto {
    padding-bottom: 0.9rem;
  }
  .submission-para {
    max-width: 90%;
  }
  .submission-para p {
    font-size: 3rem;
  }
  .plus-image {
    max-width: 15px;
    margin: auto;
  }
  .bird-bg {
    top: 20px;
  }
  .header-text {
    margin-top: 22.5rem;
    max-width: 270px;
  }
  .leaf-text {
    top: 2.5rem;
  }
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 17.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* .winnerrunnerup::before {
   bottom: -90.75rem;
 } */
  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -62rem;
  }
}

@media only screen and (max-width: 365px) {
  p.text-size-576 {
    font-size: 3.2rem;
  }
  .grand-winner .middle-item {
    min-width: 35%;
  }
  .header-text {
    margin-top: 19.5rem;
    max-width: 270px;
  }
  .leaf-text {
    top: 2.5rem;
  }
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 17.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .winnerrunnerup::before {
    bottom: -90.75rem;
  }
  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -60rem;
  }
}

@media only screen and (max-width: 326px) {
  html {
    font-size: 5px;
  }
  .label-con {
    min-width: 17rem;
  }
  /* .logo {
    max-width: 78px;
  } */
  .header-text {
    margin-top: 24.5rem;
    max-width: 270px;
  }
  .leaf-text {
    top: 3.5rem;
  }
  .grand-winner-head img,
  .winner-head-con img,
  .mention-header img {
    max-width: 65%;
  }
  .grand-winner {
    margin-top: 20.5rem;
  }
  .leaf3,
  .leaf2 {
    max-width: 24%;
  }
  .arrow img,
  .sony-close img,
  .open-close img,
  .video-close img {
    max-width: 50%;
  }
  .sony-close img,
  .open-close img,
  .close.video-close img {
    margin-left: auto;
  }
  .arrow {
    margin-left: 0;
  }
  .sony-close,
  .open-close {
    margin-right: auto;
  }
  .close.video-close {
    margin-right: 0;
  }
  .max-width,
  .sony-winner-img-con,
  .sony-runner-img-con,
  .open-winner-img-con,
  .open-runner-img-con,
  .video-winner-img-con,
  .video-runner-img-con {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* .winnerrunnerup::before {
  bottom: -90.75rem;
} */
  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  #app {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
  }
  .set-max-width .modal-content {
    max-width: 250px;
  }
  .set-max-width .prev {
    left: -35px;
    font-size: 14px;
    top: 60%;
  }
  .set-max-width .next {
    right: -35px;
    font-size: 14px;
    top: 60%;
  }
  #caption {
    font-size: 2rem;
  }
  .video-con {
    max-width: 260px;
  }
  .video-con .close-video {
    top: -25px;
  }
  .mb-50 {
    margin-bottom: -38rem;
  }
  .mb-75 {
    margin-bottom: -64rem;
  }
}

.navbar1 {
  width: 100%;
  background-color: #454545;
  color: white;
  padding: 10px;
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.8s;
}
.navbar1-nav {
  margin: 0%;
  margin-left: 300px;
  text-align: center;
}
.nav1-item {
  display: inline;
  list-style: none;
}
.nav1-item a {
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  color: white;
}
.nav1-item a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}
.nav1-item a:hover {
  color: #d3b40e;
}
.toggle1-collapse {
  float: right;
  width: 45px;
  height: 32px;
  margin: 0.4em 0.7em;
  background-color: transparent;
  color: rgba(232, 232, 232, 0.7);
  border: 1px solid rgba(232, 232, 232, 0.3) !important;
  cursor: pointer;
  display: none;
}
.toggle1-collapse:hover {
  color: rgb(232, 232, 232);
}
@media screen and (max-width: 768px) {
  .navbar1-nav {
    text-align: left;
  }
  .navbar1-brand {
    display: inline-block;
    float: none;
  }
  .toggle1-collapse {
    display: inline-block;
  }
  .navbar1-nav {
    color: white;
    padding: 0%;
    margin-left: auto;
  }
  .nav1-item {
    display: block;
    list-style: none;
    font-size: 14px;
  }
  .nav1-item:not(:last-child) {
    border-bottom: 1px solid rgba(232, 232, 232, 0.3) !important;
  }
  .nav1-item:nth-child(n + 3) {
    padding-left: 20px !important;
  }
  .navbar1-collapse {
    width: 100%;
    overflow: hidden;
    text-align: center;
    height: 0vh;
    transition: all 499ms ease;
  }
  .collapse1 {
    height: 32vh;
  }
  .toggle1-collapse i {
    font-size: 2.5em;
  }
}
.top-link {
  transition: all 0.25s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 1em 1em 0;
  padding: 0.5em;
  width: 40px;
  height: 40px;
  background-color: #ff5900;
}
.top-link.show {
  visibility: visible;
  opacity: 1;
}
.top-link.hide {
  visibility: hidden;
  opacity: 0;
}
.top-link svg {
  fill: white;
  width: 24px;
  height: 12px;
}
.top-link:hover {
  background-color: #ff5900;
}
.top-link:hover svg {
  fill: white;
}

.backtotop {
  position: absolute;
  right: 300px;
  top: 0;
}
