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

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

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.whole_div {
  padding: 10px;
  margin-top: 55px;
}


:root {

  /* font weight */
  --regular: 400;
  --bold: 700;

  /* font-size */
  --heading: 35px;
  --subHeading: 39.06px --h3Heading: 31.25px --paragraph: 16px;
  --blue: #0264b3;
  --blue-200: #bfdbfe;

  /* colors */

}

body {
  height: 100vh;
  width: 100%;
  margin-bottom: 10%;
  font-family: 'Inter', sans-serif;
}

/* course_container */

.course_container {
  margin: 60px auto;
}

/* course_row */

.course_row {
  display: flex;
  justify-content: space-evenly;
}

/* course_slider */

.course_slider {
  flex-basis: 40%;
  min-width: 300px;
}

.course_slider #emphasisPicture {
  max-width: 100%;
  width: 595px;
  border-radius: 7px;
  cursor: pointer;
}

.smallImg {
  margin-top: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* slide_img */

.smallImg .slide_img {
  flex-basis: 23%;
}

.smallImg .slide_img img {
  width: 100%;
  border-radius: 7px;
  cursor: pointer;
}

.smallImg .slide_img img:hover {
  opacity: 0.7;
}

.smallImg .slide_img img.active {
  opacity: 0.7;
  border: 3px solid var(--blue);
  cursor: default;
}

/* course_slider product description */

.course_slider .companyName {
  display: block;
  font-size: var(--h3Heading);
  color: var(--blue);
  font-weight: var(--bold);
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.course_slider h2 {
  font-size: var(--heading);
  font-weight: var(--bold);
  line-height: 58px;
  margin-bottom: 15px;
}

.mod_freebtn {
  margin-top: 20px;
  text-decoration: underline;
  display: flex;
  gap: 30px;
}

.mod_freebtn a {
  text-decoration: none;
  display: block;
  font-size: 16px;
  color: var(--blue);
  font-weight: var(--bold);
  margin-bottom: 7px;
}

.course_slider h6 {
  display: block;
  font-size: 20px;
  color: var(--blue);
  font-weight: var(--bold);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.course_slider p {
  font-size: 15px;
  color: hsl(219deg 3.13% 20.33%);
  font-weight: 500;
  text-align: justify;
  line-height: 25.6px;
}

.course_slider .price {
  display: flex;
  margin: 16px 0 5px;
  align-items: center;
}

.course_slider .price .productValue {
  display: block;
  font-weight: var(--bold);
  font-size: 25px;
  margin-right: 12px;
}

.course_slider .price .percentage {
  display: block;
  padding: 5px;
  background: var(--blue-200);
  color: var(--blue);
  border-radius: 7px;
}

.course_slider .totalValue {
  display: block;
  text-decoration: line-through;
  color: hsl(220, 14%, 75%);
  font-size: 14px;
}

.download_btn {
  padding: 14px 26px;
  background: #0264b3;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download_btn:hover {
  background-color: #0264b3;
  color: white;
}

.buttons_div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.Note_word {
  color: #ffeb00;
  margin-top: 5px;
}

.note_span {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

/* buttonsRow */

.course_slider .buttonsRow {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
}

/* increment */

.increment {
  padding: 5px;
  background: #f7f8fd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.increment input {
  background: #f7f8fd;
  width: 60px;
  font-size: 20px;
  border: none;
  outline: none;
  text-align: center;
}

.increment img {
  cursor: pointer;
}

/* call to action */

.course_slider .buttonsRow .callToAction {
  position: relative;
}

.course_slider .buttonsRow .callToAction button {
  border: none;
  background: var(--blue);
  color: #fff;
  padding: 20px 90px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: var(--bold);
  text-align: center;
}

.course_slider .buttonsRow .callToAction button i {
  margin-right: 7px;
}

.course_slider .buttonsRow .callToAction button:hover {
  opacity: 0.6;
}

/* carousel */


.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.slide[data-active="true"] {
  opacity: 1;
}

.slide>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
}

.carousel-button {
  position: absolute;
  background: #fff;
  padding: 16px;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.carousel-button img {
  display: block;
  object-fit: cover;

}

.carousel-button:hover img {
  filter: invert(52%) sepia(49%) saturate(1265%) hue-rotate(346deg) brightness(102%) contrast(104%);
}

.carousel-button.prev {
  left: -1rem;
}

.carousel-button.next {
  right: -1rem;
}

.smallpitures {
  margin-top: 3%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smallpitures .col-carousel {
  flex-basis: 20%;
}

.smallpitures .col-carousel img {
  width: 100%;
  border-radius: 7px;
  cursor: pointer;
}

.smallpitures .col-carousel img:hover {
  opacity: 0.7;
}

.smallpitures .col-carousel img.active {
  opacity: 0.7;
  border: 3px solid var(--blue);
  cursor: default;
}

.carousel.small_slide {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


@media (max-width: 768px) {

  body {
    padding: 5px;
  }

  /* nav */

  nav {
    width: 100%;
    padding: 30px;
    margin: 0;
  }

  nav .hamburger {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    margin-right: 16px;
    cursor: pointer;
  }

  nav .navItems {
    position: fixed;
    left: -200px;
    top: 0;
    width: 200px;
    height: 100vh;
    background: #fff;
    margin-left: 0px;
    padding: 30px;
    visibility: visible;
    opacity: 1;
    display: block;
    pointer-events: all;
    transition: left 0.3s ease-in-out;
    z-index: 100;
  }

  nav .navItems.show {
    left: 0px;
  }

  nav .navItems .closeIcon {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    margin-bottom: 30px;
  }

  nav .navItems ul li {
    display: block;
    margin-top: 18px;
  }

  nav .navItems ul li a {
    color: hsl(220, 13%, 13%);
    ;
    font-size: var(--paragraph);
    font-weight: var(--regular);
  }

  nav .navItems ul li a:hover {
    opacity: 0.6;
    border: none;
    padding: 0;
  }

  nav .cartDiv #cartIcon {
    display: block;
    margin-right: 30px;
    cursor: pointer;
  }

  /* cart box */

  nav .cart-box {
    position: absolute;
    top: 150%;
    left: 10px;
    width: 95%;
    border-radius: 7px;
    z-index: 900;
  }

  nav .cart-box .heading {
    border-bottom: 1px solid hsl(220, 14%, 75%);
    padding: 25px;
  }

  nav .cart-box .heading span {
    font-size: 20px;
  }

  nav .cart-box .products .product .description .info {
    font-size: 18px;
    font-weight: var(--regular);
    color: hsl(219, 9%, 45%);
    margin: 0 12px;
  }

  nav .cart-box .products .product .description .info h3 {
    font-size: 18px;
    font-weight: var(--regular);
  }

  nav .cart-box .products.empty {
    text-align: center;
  }

  nav .cart-box .products.empty .emptyCart {
    font-size: 20px;
  }

  nav .user {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 90px;
  }

  /* user avatar */

  nav .user .userImg img {
    display: block;
    width: 100%;
    cursor: pointer;
    border: 2px solid transparent;
  }

  nav .user .userImg img:hover {
    border: 2px solid var(--blue);
    border-radius: 50%;
  }


  /* container */

  .course_container {
    max-width: 100%;
    margin: 0 auto;
  }

  .course_row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5%;
    padding: 0;
    flex-direction: column;
  }

  .course_slider {
    flex-basis: 100%;
    min-width: 300px;
    margin-top: 20px;
  }

  .course_slider #emphasisPicture {
    max-width: 100%;
    border-radius: 0px;
    cursor: default;
    display: none;

  }

  .smallImg {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* course_slider info */

  .course_slider:nth-child(2) {
    padding: 0 10px;
  }

  .course_slider .companyName {
    margin-top: 30px;
    margin-bottom: 7px;

  }

  .course_slider .price {
    display: flex;
    margin: 16px 0 5px;
    align-items: center;
  }

  .course_slider .price .productValue {
    display: block;
    font-weight: var(--bold);
    font-size: 25px;
    margin-right: 12px;
  }

  .course_slider .price .percentage {
    display: block;
    padding: 5px;
    background: var(--blue-200);
    color: var(--blue);
    border-radius: 7px;
  }

  .course_slider .totalValue {
    display: block;
    text-decoration: line-through;
    color: hsl(220, 14%, 75%);
    font-size: 14px;
  }

  /* buttonsRow */

  .course_slider .buttonsRow {
    flex-direction: column;
    width: 100%;
    margin-bottom: 10%;
  }

  /* increment */

  .increment {
    margin-bottom: 30px;
  }

  .increment input {
    background: #f7f8fd;
    width: 85%;
    font-size: 26px;
    border: none;
    outline: none;
    text-align: center;
  }

  .increment img {
    cursor: pointer;
  }

  /* call to action */

  .course_slider .buttonsRow .callToAction {
    position: relative;
    width: 100%;
    text-align: center;
  }

  .course_slider .buttonsRow .callToAction button {
    padding: 15px;
    width: 95%;
  }

  .course_slider .buttonsRow .callToAction button i {
    margin-right: 7px;
  }

  .course_slider .buttonsRow .callToAction button:hover {
    opacity: 0.6;
  }

  /* carousel */

  .carousel.small_slide {
    position: relative;
    height: 500px;
    width: 100%;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .carousel.small_slide .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;
  }

  .carousel.small_slide .slide[data-active] {
    opacity: 1;
    z-index: 1;
    transition-delay: 0ms;
  }

  .carousel.small_slide .slide[data-active="true"] {
    opacity: 1;
  }

  .carousel.small_slide .slide>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }

  .carousel.small_slide .carousel-button {
    position: absolute;
    background: #fff;
    padding: 16px;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .carousel.small_slide .carousel-button img {
    display: block;
    object-fit: cover;

  }

  .carousel.small_slide .carousel-button:hover img {
    filter: invert(52%) sepia(49%) saturate(1265%) hue-rotate(346deg) brightness(102%) contrast(104%);
  }

  .carousel.small_slide .carousel-button.prev {
    left: 1rem;
  }

  .carousel.small_slide .carousel-button.next {
    right: 1rem;
  }

}



/* payment start */


.pay-container {
  max-width: 940px;
  margin: 0 auto;
}

.responsive-image {
  max-width: 190px;
  height: auto;
}

.img_div {
  display: flex;
  justify-content: center;
}

.payment-details {
  display: none;
  padding: 20px;
  border-radius: 8px;
  height: 300px;
  overflow-y: auto;
}

.payment-details {

  position: relative;
  padding: 20px;
  border-radius: 8px;
  height: 298px;
  overflow-y: auto;
}

.payment-details a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.payment-details h2 {
  margin-top: 0;
}

.payment-details p {
  margin: 10px 0;
}

.super-underline {
  position: relative;
  font-size: 16px;
  color: var(--blue);
  font-weight: bold;
}

.super-underline-mojo {
  position: relative;
  margin-top: 55px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: bold;

}




/* Responsive styles */
@media (max-width: 768px) {
  .payment-details {
    padding: 15px;
  }

  .whole_div {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .payment-details {
    padding: 10px;
  }
}

/* start: Payment */
.payment-section {
  padding-bottom: 48px;
}

.payment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.payment-header {
  padding: 24px;
  background-color: var(--blue);
  border-top-left-radius: 10px;
  border-top-right-radius: 12px;
  padding-bottom: 25px;
}

.payment-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--blue);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.payment-header-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
}

.payment-header-description {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 600;
}

.payment-content {
  background-color: var(--white);
  border-radius: 0 0 8px 8px;
  border: 1px solid #bcbec1;
  position: relative;
  padding: 24px;
  overflow: hidden;
}


.payment-plan {
  display: flex;
  align-items: center;
  padding: 10px;
}

.payment-plan-type {
  width: auto;
  height: 40px;
  background-color: var(--blue);
  color: var(--white);
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 8px;
}

.payment-plan-info {
  width: 100%;
  margin-right: 8px;
  display: grid;
}

.payment-plan-info-name {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.payment-plan-info-price {
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.payment-plan-change {
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 600;
  text-underline-offset: 2px;
}

.payment-plan-change:hover {
  color: var(--blue-600);
}

.payment-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
}

.payment-summary-name {
  font-size: 14px;
  color: #000000;
}

.payment-summary-price {
  font-weight: 500;
  font-size: 15px;
}

.payment-summary-divider {
  width: calc(100% - 16px);
  height: 0;
  margin: 12px auto;
  border-bottom: 1px dashed var(--gray-200);
  position: relative;
}

.payment-summary-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gray-50);
  box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gray-50);
  box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-total {
  padding-bottom: 16px;
}

.payment-summary-total .payment-summary-name {
  color: var(--gray-900);
}

.payment-summary-total .payment-summary-price {
  font-size: 16px;
  color: var(--blue);
  font-weight: 600;
}

.payment-right {
  min-width: 0;
  border-radius: 8px;
  border: 1px solid #bcbec1;
}

.payment-form {
  padding: 24px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.payment-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.upi_dtls {
  text-align: center;
  margin-top: 60px;
}

.payment-method {
  display: flex;
  align-items: center;
  overflow-x: auto;
  justify-content: center;
  padding: 6px 0;
  width: 100%;
}

.payment-method input {
  display: none;
}

.payment-method-item {
  width: 30%;
  height: 80px;
  padding: 8px;
  border: 1px solid #bcbec1;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 5px;

}

input:checked+.payment-method-item {
  border-color: var(--blue);
}

input:checked+.payment-method-item::before {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--blue);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEwLjAwMDcgMTUuMTcwOUwxOS4xOTMxIDUuOTc4NTJMMjAuNjA3MyA3LjM5MjczTDEwLjAwMDcgMTcuOTk5M0wzLjYzNjcyIDExLjYzNTRMNS4wNTA5MyAxMC4yMjEyTDEwLjAwMDcgMTUuMTcwOVoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMSkiPjwvcGF0aD48L3N2Zz4=");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.payment-method-item>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.payment-form-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  color: var(--gray-400);
  pointer-events: none;
  transition: all .1s ease-in-out;
}

.payment-form-label-required::after {
  content: ' *';
  color: var(--red-500);
}

.payment-form-submit-button {
  background-color: var(--indigo-500);
  border-radius: 8px;
  outline: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  padding: 16px;
  transition: all .15s ease-in-out;
}

.payment-form-submit-button:hover {
  background-color: var(--indigo-600);
}

.payment-form-submit-button>i {
  margin-right: 8px;
}

/* end: Payment */

/* start: Breakpoints */
@media screen and (max-width: 767px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }

  .payment-content {
    padding: 16px;
  }

  .payment-content::before {
    top: 16px;
    width: calc(100% - 20px);
  }

}

@media screen and (max-width: 910px) {
  .course_slider h2 {
    font-size: 35px;
    ;
    font-weight: var(--bold);
    line-height: 58px;
    margin-bottom: 0;
  }
}

/* end: Breakpoints */


/* for video sections*/



.bottom-summary-divider{
  width: calc(100% - 16px);
  height: 0;
  margin: 30px auto;
  border-bottom: 1px dashed var(--gray-200);
  position: relative;
}

.imp_button {
  background: #e14444;
  border-radius: 999px;
  box-shadow: #ff4040 0 10px 17px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
}

  .imp_div {
    text-align: center;

  }

  .imp_notes {
    color: #d11a1a;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
  }


  .tabcontent {
    color: black;
    display: none;
    padding: 20px 20px;
    height: 100%;
    font-size: 18px;
  }

  .tab_renew {
            padding: 20px;
        }
        .Note_word {
            color: #ffeb00;
            margin-top: 5px;
        }

        .note_span {
            color: #fff;
            font-weight: 500;
            font-size: 16px;
        }

  @media screen and (min-width: 320px) and (max-width: 340px) {

    .tabcontent {
      padding: 15px 15px;
      font-size: 16px;
    }
  }

  @media screen and (min-width: 340px) and (max-width: 370px) {
    .tabcontent {
      padding: 50px 15px;
      font-size: 15px;
    }
  }

  @media screen and (min-width: 370px) and (max-width: 440px) {

    .tabcontent {
      padding: 50px 15px;
      font-size: 17px;
    }
  }

  @media screen and (min-width: 440px) and (max-width: 600px) {

    .tabcontent {
      font-size: 17px;
    }
  }

  @media screen and (min-width:1024px) {
    .tabcontent {
      font-size: 17px;
    }
  }

  @media screen and (min-width:1440px) {
    .tabcontent {
      font-size: 20px;
    }
  }

  .tab1 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
  }

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

    .tab1 {
      flex-direction: column;
    }
  }

  @media screen and (min-width:900px) and (max-width: 1065px) {

    .tab1 {
      flex-direction: column;
    }
  }

  .description {
    text-align: left;
    max-width: 50%;
    animation: slideInLeft 1s ease-in-out;
  }


  .description h2 {
    text-align: center;
  }

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

    .tab1,
    .tab2 {
      flex-direction: column;
    }

    .description {
      max-width: 100%;
    }
  }

  @media screen and (min-width:900px) and (max-width: 1065px) {

    .tab1 {
      flex-direction: column;
    }

    .description {
      max-width: 100%;
    }
  }

  .container_tab {
    border: 1px solid #bcbec1;
    margin-top: 35px;
  }

  .abt_software {
    font-size: 20px;
    color: #53a583;

  }

  .abt_p_vid {
    margin-top: 5px;
    color: #0264b3;
    cursor: pointer;
    padding: 5px;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 500;
  }

  .abt_p_vid:hover{
    text-decoration: underline;
    color: #000;
  }

  .product_video {
    margin-left: 10px;
  }


  @media screen and (min-width: 320px) and (max-width: 340px) {
    .product_video iframe {
      width: 290px;
    }

    .product_video {
      margin-left: 0px;
    }
  }

  @media screen and (min-width: 340px) and (max-width: 370px) {
    .product_video iframe {
      width: 275px;
    }

    .product_video {
      margin-left: 0px;
    }
  }

  @media screen and (min-width: 370px) and (max-width: 440px) {
    .product_video iframe {
      width: 297px;
    }

    .product_video {
      margin-left: 0px;
    }
  }

  @media screen and (min-width: 440px) and (max-width: 600px) {
    .product_video iframe {
      width: 350px;
    }

    .product_video {
      margin-left: 0px;
    }
  }


  @media screen and (min-width:600px) and (max-width: 680px) {
    .product_video iframe {
      width: 500px;
    }
  }

  @media screen and (max-width: 900px) {
    .product_video {
      margin-left: 0px;
      margin-top: 30px;
    }
  }

  @media screen and (min-width:900px) and (max-width: 1065px) {

    .product_video {
      margin-left: 0px;
      margin-top: 30px;
    }
  }

  @media screen and (min-width:1024px) {
    .product_video iframe {
      width: 550px;
    }
  }

  @media screen and (min-width:1440px) {
    .product_video iframe {
      width: 550px;
    }
  }
  