/*
Theme Name: Roozbeh Chocolate Theme
Theme URI: https://roozbehchocolate.com
Author: Mostafa Noori
Author URI: https://roozbehchocolate.com
Description: Wordpress Theme For Roozbehchocolate.com
Version: 1.3
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwenty
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
main {
    display: grid;
}

.menu {
    display: inline-flex;
    list-style: none;
    padding: 15px 250px 0px 0px;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    direction: ltr;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
}

.main-menu li:hover>a {
    background: #eee;
}

/* زیرمنو */
.main-menu ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 45px;
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 999;
}

.main-menu ul.sub-menu li a {
    padding: 8px 12px;
}

.main-menu li:hover>ul.sub-menu {
    display: block;
    /* برای دسکتاپ */
}

html {
    color: #fff;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #000000;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.hidden {
    display: none !important;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(-o-min-device-pixel-ratio: 5/4),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

@media print {

    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/**
   * Animations
   */
@-webkit-keyframes tmGrowShrink {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.55);
        transform: scale(1.55);
        opacity: 0;
    }
}

@keyframes tmGrowShrink {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.55);
        transform: scale(1.55);
        opacity: 0;
    }
}

@-webkit-keyframes tmSpin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes tmSpin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes tmSpinReverse {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes tmSpinReverse {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes tmLeftToRight {
    0% {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
        opacity: 0;
    }
}

@keyframes tmLeftToRight {
    0% {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
        opacity: 0;
    }
}

/**
   * Typography
   */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

html {
    overflow: hidden;
    overflow-y: auto;
}

body {
    overflow: hidden;
    font-size: 14px;
    font-family: diodrumen;
    /* line-height: 26px; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #444444;
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #444444;
}

:-moz-placeholder {
    color: #444444;
}

::-moz-placeholder {
    color: #444444;
}

:-ms-input-placeholder {
    color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr {
    margin: 0;
    margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "lalezar";
    line-height: 1.3;
    color: #333333;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: 500;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 400;
}

h1,
.h1 {
    font-size: 42px;
}

h2,
.h2 {
    font-size: 72px;
}

h3,
.h3 {
    font-size: 26px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

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

    h1,
    .h1 {
        font-size: 32px;
    }

    h2,
    .h2 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 22px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }
}

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

    h1,
    .h1 {
        font-size: 29px;
    }

    h2,
    .h2 {
        font-size: 26px;
    }
}

::-moz-selection {
    background: #3f51b5;
    color: #ffffff;
}

::-ms-selection {
    background: #3f51b5;
    color: #ffffff;
}

::-o-selection {
    background: #3f51b5;
    color: #ffffff;
}

::selection {
    background: #3f51b5;
    color: #ffffff;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
    -webkit-transition: background-color 50000s ease-in-out 0s;
    -o-transition: background-color 50000s ease-in-out 0s;
    transition: background-color 50000s ease-in-out 0s;
}

a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a:visited {
    color: inherit;
}

button {
    cursor: pointer;
}

input,
button,
select,
textarea {
    background: transparent;
    border: 1px solid #e5e5e5;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    color: #444444;
    font-family: 'diodrumen';
    border-radius: 3px;
}

input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #777777;
}

input:-moz-placeholder,
button:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
    color: #777777;
}

input::-moz-placeholder,
button::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
    color: #777777;
}

input:-ms-input-placeholder,
button:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #777777;
}

input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    outline: none;
    border-color: #3f51b5;
}

input,
select,
textarea {
    width: 100%;
    font-size: 14px;
    vertical-align: middle;
}

input:focus,
select:focus,
textarea:focus {
    background: rgba(63, 81, 181, 0.05);
    border-color: rgba(63, 81, 181, 0.05);
}

input,
select,
button {
    height: 50px;
    padding: 0px 0px 0px 0px;
    margin-top: 0px;
}

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

    input,
    select,
    button {
        height: 44px;
    }
}

textarea {
    padding: 10px 15px;
}

blockquote {
    border: 1px solid #e5e5e5;
    border-right: 5px solid #3f51b5;
    font-size: 18px;
    line-height: 27px;
    padding: 30px 40px 15px 40px;
    position: relative;
    z-index: 1;
    font-style: italic;
    background: #f7f9fb;
}

blockquote footer {
    font-size: 14px;
}

blockquote footer a {
    color: #3f51b5;
}

blockquote footer a:hover {
    color: #3f51b5;
}

@media only screen and (max-width: 767px) {
    blockquote {
        font-size: 16px;
        line-height: 25px;
        padding: 20px;
    }
}

[class^="flaticon-"],
[class*=" flaticon-"],
[class^="flaticon-"],
[class*=" flaticon-"] {
    line-height: 1;
}

[class^="flaticon-"]::before,
[class^="flaticon-"]::after,
[class*=" flaticon-"]::before,
[class*=" flaticon-"]::after,
[class^="flaticon-"]::before,
[class^="flaticon-"]::after,
[class*=" flaticon-"]::before,
[class*=" flaticon-"]::after {
    margin-right: 0;
    font-size: inherit;
    vertical-align: middle;
}

.stylish-list {
    padding-right: 0;
}

.stylish-list li {
    list-style: none;
    line-height: 30px;
    position: relative;
    padding-right: 30px;
}

.stylish-list i {
    position: absolute;
    right: 0;
    top: 7px;
    font-size: 16px;
    color: #c5c5c5;
}

/* Checkbox & Radio Styles */
input[type=checkbox],
input[type=radio] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none;
}

input[type=checkbox]~label,
input[type=radio]~label {
    position: relative;
    padding-right: 24px;
    cursor: pointer;
}

input[type=checkbox]~label:before,
input[type=radio]~label:before {
    content: "";
    font-family: 'fontAwesome';
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 5px;
    border: 1px solid #e5e5e5;
    height: 15px;
    width: 15px;
    line-height: 1;
    font-size: 13px;
}

input[type=checkbox]:checked~label,
input[type=radio]:checked~label {
    color: #3f51b5;
}

input[type=checkbox]:checked~label:before,
input[type=radio]:checked~label:before {
    content: "\f00c";
    color: #3f51b5;
    border-color: #3f51b5;
}

input[type=radio]~label::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    border: 2px solid #e5e5e5;
    border-radius: 100px;
    height: 15px;
    width: 15px;
    margin-top: -8px;
    line-height: .5;
    font-size: 28px;
}

input[type=radio]:checked~label::before {
    content: "";
    color: #3f51b5;
    border-color: #3f51b5;
}

/**
   * Utilities
   */
.hidden {
    display: none;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* Define Colors */
.color-theme {
    color: #3f51b5;
}

.color-secondary {
    color: #9c27b0;
}

.color-dark {
    color: #272727;
}

.colog-grey {
    color: #f7f9fb;
}

.color-black {
    color: #000000;
}

.color-white {
    color: #ffffff;
}

/* Background Color */
.bg-theme {
    background: #a2a2a2;
}

.bg-secondary {
    background: #9c27b0;
}

.bg-grey {
    background: #e7e8e9;
}

.bg-dark {
    background: #272727 !important;
}

.bg-black {
    background: #000000;
}

/* Background Image */
[class*="bg-image-"],
[data-bgimage] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-image-1 {
    background-image: url(../images/bg/bg-image-1.jpg);
}

.bg-image-2 {
    background-image: url(../images/bg/bg-image-2.jpg);
}

.bg-image-3 {
    background-image: url(../images/bg/bg-image-3.jpg);
}

.bg-image-4 {
    background-image: url(../images/bg/bg-image-4.jpg);
}

.bg-image-5 {
    background-image: url(../images/bg/bg-image-5.jpg);
}

.bg-image-6 {
    background-image: url(../images/bg/bg-image-6.jpg);
}

.bg-image-7 {
    background-image: url(../images/bg/bg-image-7.jpg);
}

.bg-image-8 {
    background-image: url(../images/bg/bg-image-8.jpg);
}

.bg-image-9 {
    background-image: url(../images/bg/bg-image-9.jpg);
}

.bg-image-10 {
    background-image: url(../images/bg/bg-image-10.jpg);
}

.bg-image-11 {
    background-image: url(../images/bg/bg-image-11.jpg);
}

.bg-image-12 {
    background-image: url(../images/bg/bg-image-12.jpg);
}

.bg-image-13 {
    background-image: url(../images/bg/bg-image-13.jpg);
}

.bg-image-14 {
    background-image: url(../images/bg/bg-image-14.jpg);
}

.bg-image-15 {
    background-image: url(../images/bg/bg-image-15.jpg);
}

.bg-image-16 {
    background-image: url(../images/bg/bg-image-16.jpg);
}

.bg-image-17 {
    background-image: url(../images/bg/bg-image-17.jpg);
}

.bg-image-18 {
    background-image: url(../images/bg/bg-image-18.jpg);
}

.bg-image-19 {
    background-image: url(../images/bg/bg-image-19.jpg);
}

.bg-image-20 {
    background-image: url(../images/bg/bg-image-20.jpg);
}

/* Text specialized */
.text-italic {
    font-style: italic;
}

.text-normal {
    font-style: normal;
}

.text-underline {
    font-style: underline;
}

/* Font specialized */
.body-font {
    font-family: "Karla", sans-serif;
}

.heading-font {
    font-family: "Rubik", sans-serif;
}

/* Height and width */
.tm-fullscreen {
    min-height: 100vh;
    width: 100%;
}

/* Overlay styles */
[data-overlay],
[data-secondary-overlay],
[data-black-overlay],
[data-white-overlay] {
    position: relative;
}

[data-overlay]>div,
[data-overlay]>*,
[data-secondary-overlay]>div,
[data-secondary-overlay]>*,
[data-black-overlay]>div,
[data-black-overlay]>*,
[data-white-overlay]>div,
[data-white-overlay]>* {
    position: relative;
    z-index: 3;
}

[data-overlay]:before,
[data-secondary-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

[data-overlay]:before {
    background-color: #e7e7e8;
}

[data-secondary-overlay]:before {
    background-color: #3f51b5;
}

[data-black-overlay]:before {
    background-color: #32363d;
}

[data-white-overlay]:before {
    background-color: #ffffff;
}

[data-overlay="0.5"]:before,
[data-secondary-overlay="0.5"]:before,
[data-black-overlay="0.5"]:before,
[data-white-overlay="0.5"]:before {
    opacity: 0.05;
}

[data-overlay="1"]:before,
[data-secondary-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
    opacity: 0.1;
}

[data-overlay="1.5"]:before,
[data-secondary-overlay="1.5"]:before,
[data-black-overlay="1.5"]:before,
[data-white-overlay="1.5"]:before {
    opacity: 0.15;
}

[data-overlay="2"]:before,
[data-secondary-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
    opacity: 0.2;
}

[data-overlay="2.5"]:before,
[data-secondary-overlay="2.5"]:before,
[data-black-overlay="2.5"]:before,
[data-white-overlay="2.5"]:before {
    opacity: 0.25;
}

[data-overlay="3"]:before,
[data-secondary-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
    opacity: 0.3;
}

[data-overlay="3.5"]:before,
[data-secondary-overlay="3.5"]:before,
[data-black-overlay="3.5"]:before,
[data-white-overlay="3.5"]:before {
    opacity: 0.35;
}

[data-overlay="4"]:before,
[data-secondary-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
    opacity: 0.4;
}

[data-overlay="4.5"]:before,
[data-secondary-overlay="4.5"]:before,
[data-black-overlay="4.5"]:before,
[data-white-overlay="4.5"]:before {
    opacity: 0.45;
}

[data-overlay="5"]:before,
[data-secondary-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
    opacity: 0.5;
}

[data-overlay="5.5"]:before,
[data-secondary-overlay="5.5"]:before,
[data-black-overlay="5.5"]:before,
[data-white-overlay="5.5"]:before {
    opacity: 0.55;
}

[data-overlay="6.5"]:before,
[data-secondary-overlay="6.5"]:before,
[data-black-overlay="6.5"]:before,
[data-white-overlay="6.5"]:before {
    opacity: 0.65;
}

[data-overlay="7"]:before,
[data-secondary-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
    opacity: 0.7;
}

[data-overlay="7.5"]:before,
[data-secondary-overlay="7.5"]:before,
[data-black-overlay="7.5"]:before,
[data-white-overlay="7.5"]:before {
    opacity: 0.75;
}

[data-overlay="8"]:before,
[data-secondary-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
    opacity: 0.8;
}

[data-overlay="8.5"]:before,
[data-secondary-overlay="8.5"]:before,
[data-black-overlay="8.5"]:before,
[data-white-overlay="8.5"]:before {
    opacity: 0.85;
}

[data-overlay="9"]:before,
[data-secondary-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
    opacity: 0.9;
}

[data-overlay="9.5"]:before,
[data-secondary-overlay="9.5"]:before,
[data-black-overlay="9.5"]:before,
[data-white-overlay="9.5"]:before {
    opacity: 0.95;
}

[data-overlay="10"]:before,
[data-secondary-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
    opacity: 1;
}

/* Slick Preset */
.slick-slide:active,
.slick-slide:focus {
    outline: none;
}

.slick-slide.slick-current:active,
.slick-slide.slick-current:focus,
.slick-slide.slick-active:active,
.slick-slide.slick-active:focus {
    outline: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/* Section Padding */
.tm-padding-section {
    margin-top: -25px;
    background-image: url(/images/bg/Back-PastryAsset2.jpg);
}

.tm-padding-section-footer {
    margin-bottom: 30px;
    margin-top: -6%;
}

.productsec {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
    background-size: 100%;
    background-position-y: -30%;
    background-repeat: no-repeat;
    background-position-y: 100%;
}

.tm-padding-section-top {
    padding-top: 100px;
}

.tm-padding-section-bottom {
    padding-bottom: 100px;
}

.tm-padding-section-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

.tm-padding-section-sm-top {
    padding-top: 60px;
}

.tm-padding-section-sm-bottom {
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .tm-padding-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .tm-padding-section-top {
        padding-top: 70px;
    }

    .tm-padding-section-bottom {
        padding-bottom: 70px;
    }
}

.mt-30-reverse {
    margin-top: -30px;
    margin-bottom: 25px;
    direction: ltr;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.mt-50-reverse {
    margin-top: -50px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mtb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

#scrollUp {
    left: 30px;
    bottom: 30px;
    height: 45px;
    width: 45px;
    line-height: 43px;
    text-align: center;
    background: #EE2C7B;
    color: #ffffff;
    font-size: 16px;
    border-radius: 100%;
    border: 1px solid #3f51b5;
    -webkit-animation: slideInRight 0.9s ease-in-out 1 both;
    animation: slideInRight 0.9s ease-in-out 1 both;
    z-index: 999 !important;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.form-messages {
    margin-bottom: 0;
    text-align: center;
}

.form-messages.error {
    margin-top: 20px;
    color: #f80707;
}

.form-messages.success {
    margin-top: 20px;
    color: #0d8d2d;
}

.tm-parallax {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    height: 200px;
    line-height: normal;
}

.tm-parallax>.tm-parallax-img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Youtube Video Background */
.tm-videobgholder {
    position: relative;
}

.tm-videobgwarpper {
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0 !important;
    right: 0;
    z-index: -1;
}

.tm-videobg {
    display: block;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background-size: cover;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 480px;
    }
}

@media only screen and (max-width: 575px) {
    .container {
        max-width: 440px;
    }
}

.lg-backdrop {
    background-color: rgba(50, 54, 61, 0.95);
}

.tm-rating span {
    color: #919191;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
}

.tm-rating span.active {
    color: #fdc716;
}

/* Preloader Styels */
.tm-preloader {
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(181, 181, 181, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
}

.tm-preloader span {
    display: inline-block;
    height: 30px;
    width: 30px;
    background: 100% 0;
    border-radius: 1000px;
    position: relative;
    z-index: 1;
}

.tm-preloader span::before,
.tm-preloader span::after {
    content: "";
    right: 50%;
    top: 50%;
    position: absolute;
    display: inline-block;
    border-radius: 1000px;
}

.tm-preloader span::before {
    height: 190%;
    width: 190%;
    margin-right: -28.5px;
    margin-top: -28.5px;
    border-width: 5px;
    border-style: solid;
    border-color: #ffffff transparent;
    -webkit-animation: tmSpinReverse 1s linear infinite;
    animation: tmSpinReverse 1s linear infinite;
}

.tm-preloader span::after {
    height: 250%;
    width: 250%;
    margin-right: -37.5px;
    margin-top: -37.5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #ffffff;
    -webkit-animation: tmSpin 1s linear infinite;
    animation: tmSpin 1s linear infinite;
}

.tm-preloader .tm-button {
    position: absolute;
    top: auto;
    right: auto;
    left: 15px;
    bottom: 15px;
}

/* Datepicker */
.datepicker-dropdown {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.datepicker-top-left,
.datepicker-top-right {
    border-top-color: #3f51b5;
}

.datepicker-top-left::before,
.datepicker-top-right::before {
    border-bottom-color: #3f51b5;
}

.datepicker-panel>ul>li.picked,
.datepicker-panel>ul>li.picked:hover {
    color: #ffffff;
    background: #3f51b5;
}

.datepicker-container {
    width: 240px;
}

.datepicker-panel>ul>li {
    width: 34px;
}

body {
    padding-left: 0 !important;
}

.modal-open .wrapper {
    z-index: initial;
}

.main-content {
    background: #ffffff;
}

.tm-button,
a.tm-button,
button.tm-button {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0px;
    background: #c5c5c5;
    height: 35px;
    line-height: 27px;
    padding: 0 15px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    color: #000000;
    border: 1px solid #c3b8b8;
    z-index: 1;
    vertical-align: middle;
    border-radius: 3px;
}

.tm-button b,
a.tm-button b,
button.tm-button b {
    position: absolute;
    border-radius: 50%;
    width: 0;
    height: 0;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}

.tm-button:hover,
a.tm-button:hover,
button.tm-button:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.tm-button:hover b,
a.tm-button:hover b,
button.tm-button:hover b {
    width: 500px;
    height: 500px;
}

.tm-button:active,
a.tm-button:active,
button.tm-button:active {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.tm-button.tm-button-dark,
a.tm-button.tm-button-dark,
button.tm-button.tm-button-dark {
    background: #333333;
    border-color: #333333;
}

.tm-button.tm-button-dark b,
a.tm-button.tm-button-dark b,
button.tm-button.tm-button-dark b {
    background: rgba(255, 255, 255, 0.1);
}

.tm-button.tm-button-white,
a.tm-button.tm-button-white,
button.tm-button.tm-button-white {
    background: #ffffff;
    border-color: #ffffff;
}

.tm-button.tm-button-white b,
a.tm-button.tm-button-white b,
button.tm-button.tm-button-white b {
    background: rgba(63, 81, 181, 0.1);
}

.tm-button.tm-button-sm,
a.tm-button.tm-button-sm,
button.tm-button.tm-button-sm {
    font-weight: 500;
    letter-spacing: 0;
    font-size: 16px;
    height: 44px;
    line-height: 42px;
    padding: 0 25px;
}

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

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 500;
        letter-spacing: 0;
        font-size: 16px;
        height: 44px;
        line-height: 42px;
        padding: 0px 25px;
    }
}

.tm-buttongroup {
    margin-right: -50%;
    margin-top: 5%;
}

.tm-buttongroup .tm-button {
    margin-right: 25%;
    margin-top: 0%;
}

/* Read More Button */
.tm-readmore,
a.tm-readmore,
button.tm-readmore {
    display: inline-block;
    color: #444444;
    font-weight: 700;
}

.tm-readmore i,
a.tm-readmore i,
button.tm-readmore i {
    font-size: 12px;
    padding-right: 0;
    -webkit-transition: padding 0.3s ease-in-out 0s;
    -o-transition: padding 0.3s ease-in-out 0s;
    transition: padding 0.3s ease-in-out 0s;
}

.tm-readmore:hover,
a.tm-readmore:hover,
button.tm-readmore:hover {
    color: #3f51b5;
}

.tm-readmore:hover i,
a.tm-readmore:hover i,
button.tm-readmore:hover i {
    padding-right: 5px;
}

/* Video Button */
.tm-videobutton,
a.tm-videobutton,
button.tm-videobutton {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.tm-videobutton a,
a.tm-videobutton a,
button.tm-videobutton a {
    display: inline-block;
    vertical-align: middle;
    border-radius: 999px;
}

.tm-videobutton::before,
.tm-videobutton::after,
a.tm-videobutton::before,
a.tm-videobutton::after,
button.tm-videobutton::before,
button.tm-videobutton::after {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    margin-right: -30px;
    margin-top: -30px;
    border-radius: 999px;
}

.tm-videobutton::before,
a.tm-videobutton::before,
button.tm-videobutton::before {
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
    -webkit-animation: tmGrowShrink 1.2s ease-in-out 0s infinite both;
    animation: tmGrowShrink 1.2s ease-in-out 0s infinite both;
}

.tm-videobutton::after,
a.tm-videobutton::after,
button.tm-videobutton::after {
    background: rgba(63, 81, 181, 0.7);
    z-index: -2;
    -webkit-animation: tmGrowShrink 1.2s ease-in-out 0.3s infinite both;
    animation: tmGrowShrink 1.2s ease-in-out 0.3s infinite both;
}

.tm-videobutton span,
a.tm-videobutton span,
button.tm-videobutton span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: #ffffff;
    border-radius: 999px;
    color: #3f51b5;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-videobutton span i,
a.tm-videobutton span i,
button.tm-videobutton span i {
    font-size: 26px;
    vertical-align: middle;
    padding-right: 4px;
}

.tm-videobutton:hover span,
a.tm-videobutton:hover span,
button.tm-videobutton:hover span {
    background: #3f51b5;
    color: #ffffff;
}

.tm-videobutton.tm-videobutton-lg::before,
.tm-videobutton.tm-videobutton-lg::after,
a.tm-videobutton.tm-videobutton-lg::before,
a.tm-videobutton.tm-videobutton-lg::after,
button.tm-videobutton.tm-videobutton-lg::before,
button.tm-videobutton.tm-videobutton-lg::after {
    margin-right: -40px;
    margin-top: -40px;
}

.tm-videobutton.tm-videobutton-lg span,
a.tm-videobutton.tm-videobutton-lg span,
button.tm-videobutton.tm-videobutton-lg span {
    height: 80px;
    width: 80px;
    line-height: 80px;
}

.tm-videobutton.tm-videobutton-lg span i,
a.tm-videobutton.tm-videobutton-lg span i,
button.tm-videobutton.tm-videobutton-lg span i {
    font-size: 32px;
}

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

    .tm-videobutton.tm-videobutton-lg::before,
    .tm-videobutton.tm-videobutton-lg::after,
    a.tm-videobutton.tm-videobutton-lg::before,
    a.tm-videobutton.tm-videobutton-lg::after,
    button.tm-videobutton.tm-videobutton-lg::before,
    button.tm-videobutton.tm-videobutton-lg::after {
        margin-right: -32.5px;
        margin-top: -32.5px;
    }

    .tm-videobutton.tm-videobutton-lg span,
    a.tm-videobutton.tm-videobutton-lg span,
    button.tm-videobutton.tm-videobutton-lg span {
        height: 65px;
        width: 65px;
        line-height: 65px;
    }

    .tm-videobutton.tm-videobutton-lg span i,
    a.tm-videobutton.tm-videobutton-lg span i,
    button.tm-videobutton.tm-videobutton-lg span i {
        font-size: 26px;
    }
}

/**
   * Title
   */
.tm-section-title {
    margin-bottom: 55px;
    margin-top: 10%;
}

.tm-section-title h2,
.tm-section-title h3 {
    margin-top: -10px;
    font-weight: 100;
    margin-bottom: 10px;
    color: #000;
}

.tm-section-title .divider {
    position: relative;
    font-size: 20px;
    color: #c5c5c5;
    display: inline-block;
}

.tm-section-title .divider i {
    padding-left: 15px;
    line-height: 1;
}

.tm-section-title .divider i::before {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.tm-section-title .divider::before,
.tm-section-title .divider::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 160px;
    background: #c5c5c5;
}

.tm-section-title .divider::before {
    right: auto;
    left: 100%;
    top: 50%;
    display: none;
}

.tm-section-title .divider::after {
    right: 100%;
    top: 50%;
}

.tm-section-title .divider.animateon i::before {
    -webkit-animation: tmSpin 2.5s linear 0s infinite;
    animation: tmSpin 2.5s linear 0s infinite;
}

.tm-section-title p {
    margin-top: 15px;
}

.tm-section-title.tm-section-title-white h2,
.tm-section-title.tm-section-title-white h3 {
    color: #ffffff;
}

.tm-section-title.tm-section-title-white .divider {
    color: #ffffff;
}

.tm-section-title.tm-section-title-white .divider::before,
.tm-section-title.tm-section-title-white .divider::after {
    background: #ffffff;
}

.tm-section-title.tm-section-title-white p {
    color: #ffffff;
}

.tm-section-title.text-center .divider i {
    padding: 0 15px;
}

.tm-section-title.text-center .divider::before {
    display: block;
    width: 120px;
}

.tm-section-title.text-center .divider::after {
    width: 120px;
}

.tm-section-title.text-right .divider i {
    padding-right: 15px;
    padding-left: 0;
}

.tm-section-title.text-right .divider::before {
    display: block;
    width: 160px;
}

.tm-section-title.text-right .divider::after {
    display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-section-title {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .tm-section-title {
        margin-bottom: 40px;
    }
}

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

    .tm-section-title .divider::before,
    .tm-section-title .divider::after {
        width: 75px;
    }

    .tm-section-title.text-center .divider::before,
    .tm-section-title.text-center .divider::after,
    .tm-section-title.text-right .divider::before,
    .tm-section-title.text-right .divider::after {
        width: 75px;
    }
}

.small-title {
    position: relative;
    padding-bottom: 15px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: -5px;
}

.small-title:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 70px;
    background: #3f51b5;
}

/**
   * Slider Elements
   */
.tm-slider-dots ul.slick-dots {
    line-height: 1;
    max-width: 1170px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    bottom: -25px;
}

.tm-slider-dots ul.slick-dots li {
    width: auto;
    height: auto;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}

.tm-slider-dots ul.slick-dots li:first-child {
    margin-right: 0;
}

.tm-slider-dots ul.slick-dots li:last-child {
    margin-left: 0;
}

.tm-slider-dots ul.slick-dots li button {
    padding: 0;
    height: 15px;
    width: 15px;
    border: 3px solid #3f51b5;
    border-radius: 100px;
    background: #ffffff;
}

.tm-slider-dots ul.slick-dots li button::before {
    display: none;
}

.tm-slider-dots ul.slick-dots li.slick-active button {
    border-color: #ffffff;
    background: #3f51b5;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.tm-slider-dots.tm-slider-dots-left ul.slick-dots {
    text-align: right;
}

.tm-slider-dots.tm-slider-dots-vertical ul.slick-dots {
    right: auto;
    left: -50px;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 20px;
}

.tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li {
    margin: 10px 0;
    margin-right: 0;
    margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-slider-dots ul.slick-dots {
        max-width: 930px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .tm-slider-dots.tm-slider-dots-vertical {
        margin-bottom: 40px;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots {
        max-width: inherit;
        left: auto;
        right: 0;
        top: calc(100% + 24px);
        bottom: auto;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li {
        margin: 0;
        margin: 0 10px;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li:first-child {
        margin-right: 0;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li::last-child {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-slider-dots.tm-slider-dots-vertical {
        margin-bottom: 40px;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots {
        max-width: inherit;
        left: auto;
        right: 0;
        top: calc(100% + 24px);
        bottom: auto;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li {
        margin: 0;
        margin: 0 10px;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li:first-child {
        margin-right: 0;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li::last-child {
        margin-left: 0;
    }
}

.tm-slider-dots.tm-slider-dots-vertical ul.slick-dots {
    max-width: inherit;
    left: auto;
    right: 0;
    top: calc(100% + 24px);
    bottom: auto;
}

.tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li {
    margin: 0;
    margin: 0 10px;
}

.tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li:first-child {
    margin-right: 0;
}

.tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li::last-child {
    margin-left: 0;
}


@media only screen and (max-width: 767px) {
    .tm-slider-dots.tm-slider-dots-vertical {
        margin-bottom: 40px;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots {
        max-width: inherit;
        left: auto;
        right: 0;
        top: calc(100% + 24px);
        bottom: auto;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li {
        margin: 0;
        margin: 0 10px;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li:first-child {
        margin-right: 0;
    }

    .tm-slider-dots.tm-slider-dots-vertical ul.slick-dots li::last-child {
        margin-left: 0;
    }
}

.tm-slider-arrow {
    position: relative;
    /*	scale: 1.2;*/
}

.tm-slider-arrow-prev,
.tm-slider-arrow-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 0;
    height: 50px;
    line-height: 1;
    width: 50px;
    display: inline-block;
    border: 1px solid #3f51b5;
    background: #c5c5c5;
    color: #ffffff;
    margin-top: -25px;
    font-size: 20px;
    border-radius: 100px;
}

.tm-slider-arrow-prev i,
.tm-slider-arrow-next i {
    line-height: 50px;
}

.tm-slider-arrow-prev {
    right: -65px;
    left: auto;
}

.tm-slider-arrow-next {
    left: -65px;
    right: auto;
}

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

    .tm-slider-arrow-prev,
    .tm-slider-arrow-next {
        height: 42px;
        width: 42px;
        font-size: 15px;
    }

    .tm-slider-arrow-prev i,
    .tm-slider-arrow-next i {
        line-height: 42px;
    }
}

@media only screen and (max-width: 1350px) {
    .tm-slider-arrow-prev {
        right: 0;
    }

    .tm-slider-arrow-next {
        left: 0;
    }
}

.tm-slider-arrow-hovervisible .tm-slider-arrow-prev,
.tm-slider-arrow-hovervisible .tm-slider-arrow-next {
    visibility: hidden;
    opacity: 0;
}

.tm-slider-arrow-hovervisible:hover .tm-slider-arrow-prev,
.tm-slider-arrow-hovervisible:hover .tm-slider-arrow-next {
    visibility: visible;
    opacity: 1;
}

/**
   * Tab
   */
.tm-tabgroup {
    margin-bottom: 45px;
}

.tm-tabgroup li {
    margin-top: 1px;
    margin-left: 1px;
}

.tm-tabgroup li a {
    display: inline-block;
    height: 50px;
    line-height: 48px;
    min-width: 170px;
    text-align: center;
    padding: 0 35px;
    background: #ebebeb;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
}

.tm-tabgroup li a:hover {
    color: #3f51b5;
}

.tm-tabgroup li a.active {
    background: #3f51b5;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .tm-tabgroup li a {
        min-width: inherit;
        font-size: 16px;
        height: 44px;
        line-height: 42px;
        padding: 0 25px;
    }

}

.tm-tabgroup2 {
    padding-right: 0;
    margin-bottom: 40px;
    background: #f7f9fb;
    padding: 15px 0;
    text-align: center;
    display: block;
}

.tm-tabgroup2 li {
    list-style: none;
    display: inline-block;
}

.tm-tabgroup2 li:not(:last-child) a {
    border-left: 1px solid #e5e5e5;
}

.tm-tabgroup2 li a {
    color: #444444;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 3px 20px;
}

.tm-tabgroup2 li a.active {
    color: #3f51b5;
}

.tab-content {
    width: 100%;
}

.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}

.tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}

/**
   * Selectbox
   */
.nice-select {
    height: 50px;
    border-radius: 3px;
    line-height: 48px;
    padding: 0 15px;
    padding-left: 35px;
    width: 100%;
    background-color: transparent;
}

.nice-select::after {
    content: "";
    position: absolute;
    border: 0;
    background-image: url(../images/icons/down-caret.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: contain;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    height: 9px;
    width: 9px;
    line-height: 1;
    text-align: center;
}

.nice-select .current {
    display: block;
    padding: 0;
    color: #777777;
}

.nice-select .list {
    border-radius: 0;
    margin-bottom: 0;
    min-width: 180px;
    width: 100%;
    margin-top: 1px;
}

.nice-select .list .option {
    padding: 0 15px;
    min-height: auto;
    line-height: 30px;
}

.nice-select .list .option:hover {
    background: #3f51b5;
    color: #ffffff;
}

.nice-select:focus {
    background: rgba(63, 81, 181, 0.05);
    border-color: rgba(63, 81, 181, 0.05);
    color: #444444;
}

.nice-select.open {
    background: rgba(63, 81, 181, 0.05);
    border-color: rgba(63, 81, 181, 0.05);
}

.nice-select.open .current {
    color: #444444;
}

.nice-select.open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/**
   * Breadcrumb
   */
.tm-breadcrumb {
    margin-top: -8px;
    margin-bottom: -8px;
}

.tm-breadcrumb-title {
    font-weight: 700;
    text-transform: uppercase;
    color: #3f51b5;
}

.tm-breadcrumb ul {
    padding-right: 0;
    margin-bottom: 0;
    font-size: 0;
}

.tm-breadcrumb ul li {
    display: inline-block;
    list-style: none;
    font-size: 18px;
}

.tm-breadcrumb ul li::after {
    content: ">";
    padding: 0 10px;
}

.tm-breadcrumb ul li:last-child::after {
    display: none;
}

.tm-breadcrumb ul li a {
    color: #444444;
}

.tm-breadcrumb ul li a:hover {
    color: #3f51b5;
}

/**
   * Pagination
   */
.tm-pagination ul {
    padding-right: 0;
    margin-bottom: 0;
    font-size: 0;
    margin-top: -10px;
}

.tm-pagination ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    margin-top: 10px;
    margin-left: 10px;
}

.tm-pagination ul li a {
    display: inline-block;
    color: #444444;
    font-weight: 700;
    font-size: 18px;
    height: 45px;
    line-height: 43px;
    border: 1px solid #e5e5e5;
    text-align: center;
    min-width: 45px;
    padding: 0 15px;
    border-radius: 3px;
}

.tm-pagination ul li a:hover {
    background: #3f51b5;
    border-color: #3f51b5;
    color: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tm-pagination ul li.is-active a {
    background: #3f51b5;
    border-color: #3f51b5;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .tm-pagination ul li a {
        height: 40px;
        line-height: 38px;
        padding: 0 10px;
        min-width: 40px;
        font-size: 16px;
    }
}

/**
   * Comment
   */
/* Commentlist */
.tm-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.tm-comment:last-child {
    margin-bottom: 0;
}

.tm-comment-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    margin-left: 25px;
    border-radius: 3px;
    overflow: hidden;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.tm-comment-thumb img {
    max-width: 100%;
}

.tm-comment-content::after {
    content: "";
    clear: both;
    display: table;
}

.tm-comment-content h6 {
    margin-top: -2px;
    margin-bottom: 0;
}

.tm-comment-content h6 a {
    color: #333333;
}

.tm-comment-content h6 a:hover {
    color: #3f51b5;
}

.tm-comment-content p {
    margin-top: 8px;
    margin-bottom: 0;
}

.tm-comment-date {
    color: #757575;
}

.tm-comment-replybutton,
.tm-comment .tm-rating {
    float: left;
    color: #444444;
}

.tm-comment-replybutton i,
.tm-comment .tm-rating i {
    font-size: 12px;
}

.tm-comment-replybutton:hover,
.tm-comment .tm-rating:hover {
    color: #3f51b5;
}

.tm-comment-replypost {
    padding-right: 105px;
}

@media only screen and (max-width: 767px) {
    .tm-comment-replypost {
        padding-right: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-comment {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .tm-comment-thumb {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
        max-width: 60px;
        margin-left: 20px;
    }

    .tm-comment-content {
        margin-top: 20px;
    }

    .tm-comment-date {
        display: block;
    }

    .tm-comment-replybutton,
    .tm-comment .tm-rating {
        float: none;
    }
}

/* Commentbox */
.tm-commentbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-top: -15px;
}

.tm-commentbox p {
    margin-bottom: 5px;
}

.tm-commentbox label {
    margin-bottom: 15px;
}

.tm-commentbox-singlefield {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 20px;
    margin-top: 15px;
}

.tm-commentbox-singlefield.w-33 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.tm-commentbox-singlefield .tm-button {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .tm-commentbox-singlefield.w-33 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/**
   * Form Styles
   */
.tm-form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -25px;
}

.tm-form-field {
    margin-top: 25px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tm-form-field a {
    color: #444444;
}

.tm-form-field a:hover {
    color: #3f51b5;
}

.tm-form-fieldhalf {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

.tm-form.tm-form-bordered {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 3px;
}

@media only screen and (max-width: 575px) {
    .tm-form.tm-form-bordered {
        padding: 20px;
    }

    .tm-form-fieldhalf {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/**
   * Header
   */
.header {
    position: fixed;
    z-index: 4;
    width: 100%;
}

div.carousel-item.active {
    margin-top: 70px;
}

.header-toparea {
    background: #c4c4c4;
    color: #ffffff;
    padding: 10px 0;
}

.header-topinfo {
    padding: 2px 0;
}

.header-topinfo ul {
    padding-right: 0;
    margin-bottom: 0;
}

.header-topinfo ul li {
    list-style: none;
    display: inline-block;
    margin: 0 17px;
    vertical-align: middle;
}

.header-topinfo ul li:first-child {
    margin-right: 0;
}

.header-topinfo ul li:last-child {
    margin-left: 0;
    font-family: 'Yekan';
}

.header-topinfo ul li i {
    margin-left: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.header-topinfo ul li a {
    color: #ffffff;
    font-family: times new roman;
}

.header-topinfo ul li a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.header-bottominner {
    height: 70px;
}

.header-bottomarea {
    height: 70px;
}

.header-bottomarea {
    background-color: #e5e5e6;
    -webkit-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.15);
    z-index: 1;
    position: relative;
    border-bottom: inset;
    border-color: #d1d2d4;
    border-bottom-width: 10px;
}

.header-bottominner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.header-bottominner .tm-navigation {
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header-logo {
    scale: 0.6;
    background-color: #e7e7e8;
    border-radius: 20px;
    /* border: ridge; */
    border-color: #c5c5c5;
    margin-top: 1%;
    box-shadow: 6px -10px 20px -5px #cccbcc;
}

.header-logo a {
    display: inline-block;
}

.header-logo a h2,
.header-logo a h3 {
    margin-bottom: 0;
    color: #3f51b5;
    font-weight: 700;
    font-family: "Rubik", sans-serif;
    letter-spacing: 1px;
}

.header-icons {
    padding-right: 15px;
    direction: ltr;
}

.header-icons ul {
    padding-right: 0;
    margin-bottom: 20px;
    font-size: 0;
}

.header-icons ul li {
    list-style: none;
    display: inline-block;
    padding: 0 4px;
    font-size: 22px;
    position: relative;
}

.header-icons ul li:first-child {
    padding-left: 4px;
}

.header-icons ul li:last-child::after {
    display: none;
}

.header-icons ul li a,
.header-icons ul li button {
    color: #6a6a6a;
    border: none;
    padding: 0;
    text-decoration: none;
}

.header-icons ul li a i,
.header-icons ul li button i {
    width: 15px;
}

.header-icons ul li a:focus,
.header-icons ul li button:focus {
    outline: none;
}

.header-icons ul li a:hover,
.header-icons ul li button:hover {
    color: #ee2c7b;
}

.header-icons ul li .header-loginformtrigger {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    overflow: hidden;
    border: 1px solid #3f51b5;
    border-radius: 100px;
    color: #3f51b5;
}

.header-icons ul li .header-loginformtrigger img {
    height: 100%;
    width: 100%;
}

.header-searchbox {
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    padding: 20px;
    width: 320px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header-searchbox input:not([type="submit"]) {
    border-left-color: transparent;
    border-radius: 0 3px 3px 0;
}

.header-searchbox button,
.header-searchbox input[type="submit"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    padding: 0;
    text-align: center;
    border-radius: 3px 0 0 3px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header-searchbox button:hover,
.header-searchbox input[type="submit"]:hover {
    color: #ffffff;
    background: #3f51b5;
    border-color: #3f51b5;
}

.header-searchbox.is-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header-searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-logo {
        max-width: 185px;
    }
}

@media only screen and (max-width: 767px) {
    .header-topinfo {
        text-align: center;
    }

    .header-topinfo ul li {
        margin: 0;
        margin-left: 12px;
    }

    .header-topinfo.text-right {
        text-align: center !important;
    }

    .header-logo {
        padding: 0px 0;
        max-width: 200px;
    }

    .header-icons {
        padding-left: 35px;
    }

    .header-searchbox.is-visible {
        z-index: 3;
    }
}

@media only screen and (max-width: 575px) {
    .header-topsocial {
        text-align: right;
    }

    .header-searchbox {
        width: 290px;
    }
}

@media only screen and (max-width: 480px) {
    .header-logo {
        max-width: 135px;
        padding: 22px 0;
    }
}

.header-mobilemenu .mean-container .mean-nav {
    margin-top: 0;
}

.header-mobilemenu .mean-container .mean-bar {
    min-height: 0;
    padding: 0;
    z-index: 2;
}

.header-mobilemenu .mean-container a.meanmenu-reveal {
    color: #444444;
    font-size: 22px !important;
    padding: 0;
    text-indent: 0;
    z-index: 99;
    margin-top: -47px;
}

.header-mobilemenu .mean-container .mean-nav {
    background: #686868;
    position: absolute;
    right: 0;
    top: 100%;
    left: 0;
    width: 100%;
}

.header-mobilemenu .mean-container .mean-nav>ul {
    max-height: 255px;
    overflow-y: auto;
}

.header-mobilemenu .mean-container .mean-nav>ul li a {
    padding: 7px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header-mobilemenu .mean-container .mean-nav>ul li a.mean-expand {
    padding: 3px 6px !important;
    height: 28px;
    line-height: 20px;
}

.header-mobilemenu .mean-container .mean-nav>ul li a.mean-expand:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-mobilemenu .mean-container .mean-nav>ul li li a {
    opacity: 1;
}

.header-mobilemenu .mean-container .mean-nav>ul li ul li a {
    padding: 7px 10%;
}

.header-mobilemenu .mean-container .mean-nav>ul li ul ul li a {
    padding: 7px 15%;
}

.header-mobilemenu .mean-container .mean-nav>ul li ul ul ul li a {
    padding: 7px 20%;
}

/* Sticky Header */
.sticky-header.sticky-active .header-bottomarea {
    z-index: 6;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    -webkit-animation: slideInDown 0.5s ease-in-out 0s 1 both;
    animation: slideInDown 0.5s ease-in-out 0s 1 both;
}

.sticky-header.sticky-active .tm-navigation>ul>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
}

/**
   * Navigation
   */
.tm-navigation ul {
    margin-bottom: 0;
    padding-right: 0;
    font-size: 0px;
    float: left;
}

.tm-navigation ul li {
    display: inline-block;
    list-style: none;
    font-size: 16px;
    position: relative;
}

.tm-navigation ul li a {
    display: inline-block;
    font-size: 10px;
    font-family: 'Diodrumen';
    font-weight: 200;
    padding: 23px 10px;
    color: #231f20;
    text-transform: uppercase;
    text-decoration: unset;
}

.tm-navigation ul li:hover>a {
    color: #EE2C7B;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-navigation ul li a {
        padding: 25px 12px;
    }
}

/* Dropdown Menu */
.tm-navigation .tm-navigation-dropdown>a::after {
    /* content: "\f107"; */
    font-family: 'fontAwesome';
    padding-right: 3px;
}

.tm-navigation .tm-navigation-dropdown ul {
    position: absolute;
    text-align: left;
    padding: 10px 0;
    left: 10%;
    top: 0;
    width: 150px;
    background: #e7e7e8;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    border-top: 4px solid #c5c5c5;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    z-index: -1;
    border-radius: 0 0 3px 3px;
    -webkit-transition: visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
    transition: visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
    -o-transition: transform 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
}

.tm-navigation .tm-navigation-dropdown ul li {
    display: block;
    padding: 0 15px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-navigation .tm-navigation-dropdown ul li a {
    padding: 6px 0;
    line-height: 1.3;
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #444444;
}

.tm-navigation .tm-navigation-dropdown ul li.has-child::after {
    content: "";
    clear: both;
    display: table;
}

.tm-navigation .tm-navigation-dropdown ul li.has-child>a::after {
    /* content: "\f105"; */
    font-family: 'fontAwesome';
    float: left;
}

.tm-navigation .tm-navigation-dropdown ul li:hover>a {
    color: #EE2C7B;
}

.tm-navigation .tm-navigation-dropdown ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
}

.tm-navigation .tm-navigation-dropdown>ul {
    top: 100%;
}

.tm-navigation .tm-navigation-dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.tm-navigation .tm-navigation-dropdown.overflow-element ul {
    right: auto;
    left: 100%;
}

.tm-navigation .tm-navigation-dropdown.overflow-element>ul {
    right: auto;
    left: 0;
}

.tm-navigation .tm-navigation-megamenu {
    position: inherit !important;
}

.tm-navigation .tm-navigation-megamenu>a::after {
    content: "\f107";
    font-family: 'fontAwesome';
    padding-right: 3px;
}

.tm-navigation .tm-navigation-megamenu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    text-align: right;
    right: 0;
    top: 100%;
    width: 100%;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-top: 4px solid #3f51b5;
    border-radius: 0 0 3px 3px;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    z-index: -1;
    -webkit-transition: visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s, -webkit-transform 0.2s ease-in-out 0s;
    transition: visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s, -webkit-transform 0.2s ease-in-out 0s;
    -o-transition: transform 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s;
    transition: transform 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s;
    transition: transform 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s, z-index 0s, -webkit-transform 0.2s ease-in-out 0s;
}

.tm-navigation .tm-navigation-megamenu>ul>li {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 0 20px;
}

.tm-navigation .tm-navigation-megamenu>ul>li:not(:last-child) {
    border-left: 1px solid #e5e5e5;
}

.tm-navigation .tm-navigation-megamenu>ul>li>a {
    display: block;
    color: #3f51b5;
    border-bottom: 1px solid #3f51b5;
    padding: 0;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 700;
}

.tm-navigation .tm-navigation-megamenu>ul ul li {
    display: block;
}

.tm-navigation .tm-navigation-megamenu>ul ul li a {
    padding: 5px 0;
    line-height: 1.3;
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #444444;
}

.tm-navigation .tm-navigation-megamenu>ul ul li a:hover {
    color: #3f51b5;
}

.tm-navigation .tm-navigation-megamenu:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

/**
   * Heroslider
   */
.heroslider {
    position: relative;
    background-color: white;
}

.heroslider-single {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 49vh;
    overflow: hidden;
}

.heroslider-content {
    padding: 100px 0;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    transition: all 1.5s ease-in-out 0s;
}

.heroslider-content h1 {
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: -10px;
}

.heroslider-content h1 span {
    display: block;
    letter-spacing: 0px;
    margin-right: 0%;
    font-size: 50px;
}

.heroslider-content h1 b {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    color: #3f51b5;
    font-size: 140%;
    font-weight: 700;
    padding: 0 25px;
}

.heroslider-content p {
    color: #ffffff;
    font-size: 18px;
}

.heroslider-content .tm-buttongroup {
    margin-top: 5px;
}

.heroslider-slider .tm-slider-arrow-prev {
    right: 30px;
    z-index: 2;
}

.heroslider-slider .tm-slider-arrow-next {
    left: 30px;
    z-index: 2;
}

.heroslider-slidecounter {
    position: absolute;
    right: auto;
    left: 30px;
    bottom: 30px;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    height: 45px;
    line-height: 45px;
    padding: 0 5px;
    z-index: 2;
}

.heroslider-slidecounter .current-slide {
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
    display: inline-block;
    position: relative;
    width: 25px;
    text-align: center;
    line-height: 1;
}

.heroslider-slidecounter .total-slide {
    position: relative;
    display: inline-block;
    -webkit-transform: translateY(7px);
    -ms-transform: translateY(7px);
    transform: translateY(7px);
    width: 25px;
    text-align: center;
    line-height: 1;
}

.heroslider-slidecounter .total-slide::before {
    content: "";
    position: absolute;
    right: -21px;
    top: 3px;
    height: 1px;
    width: 40px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

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

    .heroslider-slider .tm-slider-arrow-prev,
    .heroslider-slider .tm-slider-arrow-next {
        top: auto;
        bottom: 20px;
    }

    .heroslider-slider .tm-slider-arrow-prev {
        right: auto;
        left: calc(50% + 10px);
    }

    .heroslider-slider .tm-slider-arrow-next {
        right: calc(50% + 10px);
        left: auto;
    }

    .heroslider-slidecounter {
        left: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .heroslider-slider .tm-slider-arrow-prev {
        right: 15px;
    }

    .heroslider-slider .tm-slider-arrow-next {
        left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .heroslider-content {
        padding-top: 50px;
    }

    .heroslider-content h1 {
        margin-top: -5px;
    }

    .heroslider-content h1 b {
        font-size: 115%;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .heroslider-content p {
        font-size: 16px;
    }

    .heroslider-slidecounter {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .heroslider-content h1 b {
        font-size: 105%;
    }
}

.heroslider-animted .heroslider-animatebox {
    /* overflow: hidden; */
    margin-bottom: -3%;
}

.heroslider-animted .heroslider-animatebox>* {
    -webkit-transform: translateY(150%);
    -ms-transform: translateY(150%);
    transform: translateY(150%);
    -webkit-transition: all 1.2s ease-out 1.2s;
    -o-transition: all 1.2s ease-out 1.2s;
    transition: all 1.2s ease-out 1.2s;
}

.heroslider-animted .slick-current .heroslider-animatebox>* {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    text-align: right;
}

/* Particle Heroslider */
.heroslider-particle .particles-js {
    width: 100vw;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 3;
    top: 0;
    right: 0;
}

.heroslider-particle .container {
    z-index: 4;
}

/**
   * About
   */
.tm-about-image {
    position: relative;
}

div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
    background-color: #eff0f0;
    padding-bottom: 3%;
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
    background-size: 20%;
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 15%;
}

.tm-about-image img {
    width: 100%;
    margin-top: 10%;
}

.tm-about-content h2 {
    margin-top: 35%;
    margin-bottom: 10px;
    color: #000000;
}

.tm-about-content p {
    text-align: justify;
    margin-top: 25px;
}

.tm-about-content span.divider {
    position: relative;
    font-size: 20px;
    color: #c5c5c5;
    margin-bottom: 15px;
    display: inline-block;
}

.tm-about-content span.divider i {
    padding-left: 15px;
}

.tm-about-content span.divider::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    height: 1px;
    width: 160px;
    background: #c5c5c5;
}

.tm-about-content ul {
    margin-bottom: 0;
    text-align: justify;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-about-content h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .tm-about-content {
        margin-top: 50px;
    }
}

/**
   * Feature
   */
.features-area {
    position: relative;
}

.feature-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    max-height: 100%;
}

.features-slider-active {
    margin-top: 50px;
    margin-bottom: 50px;
}

.features-slider-active.slick-dotted {
    margin-bottom: 55px;
}

.features-slider-active .slick-list {
    margin-right: -15px;
    margin-left: -15px;
}

.features-slider-row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.features-slider-row .tm-feature {
    margin: 5px 15px;
    margin: 20px 15px;
}

.tm-feature {
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 63px 35px;
    background: #ffffff;
}

.tm-feature-icon {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 28px;
}

.tm-feature p {
    margin-bottom: 0;
}

.tm-feature:hover .tm-feature-icon {
    -webkit-animation: rubberBand 0.5s ease-in-out 0s 1 both;
    animation: rubberBand 0.5s ease-in-out 0s 1 both;
}

@media only screen and (min-width: 1600px) and (max-width: 1919px) {
    .feature-image {
        right: 4%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .feature-image {
        right: 0;
        max-width: 310px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-slider-active {
        margin-top: 0;
        margin-bottom: 0;
    }

    .features-slider-active.slick-dotted {
        margin-bottom: 0;
    }

    .feature-image {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .features-slider-active {
        margin-top: 0;
        margin-bottom: 0;
    }

    .features-slider-active.slick-dotted {
        margin-bottom: 0;
    }

    .features-slider-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .features-slider-row .tm-feature {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
        flex: 0 0 44%;
    }

    .feature-image {
        display: none;
    }

    .tm-feature {
        -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 575px) {
    .features-slider-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .features-slider-row .tm-feature {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 95%;
        flex: 0 0 95%;
    }
}

/* Feature Style 2 */
.feature-wrapper-2 {
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    padding: 35px 0;
}

.feature-wrapper-2 [class^="col"] {
    border-left: 1px solid #e5e5e5;
}

.feature-wrapper-2 [class^="col"]:nth-child(3n) {
    border-left: none;
}

.tm-feature2 {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 25px;
}

.tm-feature2-icon {
    display: inline-block;
    height: 92px;
    width: 92px;
    text-align: center;
    line-height: 90px;
    border-radius: 999px;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    font-size: 40px;
    margin-bottom: 25px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tm-feature2:hover .tm-feature2-icon {
    background: #3f51b5;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .feature-wrapper-2 [class^="col"] {
        border: none;
    }
}

/**
   * Callback Area
   */
.tm-callback h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -8px;
}

.tm-callback .tm-form {
    margin-top: 30px;
}

.tm-successreport h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -8px;
}

.tm-successreport canvas {
    margin-top: 17px;
}

@media only screen and (max-width: 767px) {
    .tm-successreport {
        margin-top: 50px;
    }
}

/**
   * Funfact
   */
.tm-funfact-wrapper {
    margin-top: 0%;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
}

.tm-funfact {
    margin-top: 5px;
    /* margin-bottom: 20px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: left;
}

.tm-funfact-icon {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 50px;
    color: #000000;
    border-left: 2px solid #ffffff;
    padding-left: 20px;
    margin-left: 20px;
}

.tm-funfact-content .odometer {
    color: #ffffff;
    margin-bottom: 5px;
    font-family: "Rubik", sans-serif !important;
    font-weight: 500;
    font-size: 36px;
    margin-top: -9px;
    display: block;
}

.tm-funfact-content h5 {
    color: #000000;
    margin-bottom: 0;
    font-family: 'Diodrumen';
    font-size: inherit;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-funfact-icon {
        font-size: 40px;
        margin-left: 15px;
        padding-left: 15px;
    }

    .tm-funfact-content h5 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .tm-funfact {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .tm-funfact-icon {
        font-size: 40px;
        margin-left: 15px;
        padding-left: 15px;
    }

    .tm-funfact-content .odometer {
        font-size: 28px;
    }

    .tm-funfact-content h5 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-funfact {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/**
   * Service
   */
.tm-service {
    padding-bottom: 30px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-service-bgicon {
    position: absolute;
    right: 50%;
    top: 50%;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.04);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-service-icon {
    display: inline-block;
    font-size: 52px;
    margin-bottom: 25px;
    color: #3f51b5;
    border-radius: 1000px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-service-content h5 {
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    font-family: 'Diodrumen';
    font-weight: 700;
}

.tm-service-content h5 a {
    text-decoration: none;
    color: #333333;
}

.tm-service-content h5 a:hover {
    opacity: 0.8;
}

.tm-service-content p {
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-service-content .tm-readmore:hover {
    opacity: 0.8;
}

.tm-service:hover {
    scale: 1.1;
    background: #e3e3e3;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-shadow: -1 10px 25px rgba(0, 0, 0, 0.15);
}

.tm-service:hover .tm-service-bgicon {
    opacity: 1;
    visibility: visible;
}

.tm-service:hover .tm-service-icon {
    color: #ffffff;
}

.tm-service:hover .tm-service-content h5 a,
.tm-service:hover .tm-service-content p a {
    color: #000000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-service-bgicon {
        font-size: 110px;
    }
}

@media only screen and (max-width: 767px) {
    .tm-service-bgicon {
        font-size: 110px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-service {
        padding: 30px 15px;
    }
}

.tm-service-details h2 {
    font-weight: 700;
}

.tm-service-details-image {
    margin-bottom: 25px;
}

.tm-service-details blockquote {
    margin-top: 25px;
    margin-bottom: 25px;
}

/**
   * Testimonial
   */
.tm-testimonial-content {
    position: relative;
    padding: 25px 40px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    background: #ffffff;
    border-top: 5px solid rgba(63, 81, 181, 0.4);
}

.tm-testimonial-content::after {
    content: "";
    position: absolute;
    right: 50px;
    top: 100%;
    height: 20px;
    width: 20px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -10px;
    -webkit-box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

.tm-testimonial-content p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
}

.tm-testimonial-content i {
    font-size: 60px;
    color: #3f51b5;
    position: absolute;
    z-index: -1;
    right: auto;
    top: auto;
    opacity: 0.07;
    left: 20px;
    bottom: 10px;
    line-height: 1;
}

.tm-testimonial-bottom {
    margin-right: 20px;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tm-testimonial-authorimage {
    display: inline-block;
    height: 85px;
    width: 85px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    border-radius: 1000px;
    overflow: hidden;
    margin-left: 20px;
}

.tm-testimonial-authorcontent h5 {
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

.tm-testimonial-authorcontent p {
    color: #ffffff;
    margin-bottom: 0;
    font-family: "Karla", sans-serif;
}

@media only screen and (max-width: 575px) {
    .tm-testimonial-content {
        padding: 20px;
    }

    .tm-testimonial-content p {
        font-size: 16px;
    }
}

/**
   * Product
   */
.tm-product {
    overflow: hidden;
}

.tm-product-image {
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    border-radius: 3px;
}

.tm-product-image img {
    display: block;
    width: 100%;
}

.tm-product-imagelink {
    display: block;
    width: 100%;
    position: relative;
    right: 0;
    left: 0;
    top: 0;
}

.tm-product-imagelink::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-product-actions {
    position: absolute;
    right: 50%;
    top: 50%;
    z-index: 2;
    padding-right: 0;
    margin-bottom: 0;
    font-size: 0;
    line-height: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-product-actions li {
    list-style: none;
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    margin: 0 5px;
}

.tm-product-actions li a,
.tm-product-actions li button {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #444444;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
    vertical-align: middle;
    outline: none;
    border: none;
    padding: 0;
    border-radius: 100px;
}

.tm-product-actions li a:focus,
.tm-product-actions li button:focus {
    outline: none;
}

.tm-product-actions li a:hover,
.tm-product-actions li button:hover {
    background: #3f51b5;
    color: #ffffff;
}

.tm-product-content {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -5px;
}

.tm-product-title {
    margin-bottom: 5px;
    font-weight: 400;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    font-family: Diodrumen;
}

.tm-product-title a {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}

.tm-product-title a:hover {
    color: #3f51b5;
}

.tm-product-rating span {
    color: #919191;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
}

.tm-product-rating span.active {
    color: #fdc716;
}

.tm-product-price {
    margin-bottom: 0;
    font-size: 14px;
}

.tm-product-price del {
    color: #5a5a5a;
    font-size: 12px;
}

.tm-product:hover .tm-product-imagelink::before {
    visibility: visible;
    opacity: 1;
}

.tm-product:hover .tm-product-actions {
    visibility: visible;
    opacity: 1;
}

/**
   * Promo
   */
.tm-promo-content h2 {
    font-weight: 700;
}

.tm-promo-content h2 span {
    color: #3f51b5;
    font-size: 60px;
}

.tm-promo-content p {
    font-size: 18px;
    line-height: 30px;
}

.tm-promo-content .tm-countdown {
    margin-top: 15px;
}

.tm-promo-content .tm-button {
    margin-top: 50px;
}

.tm-promo-image {
    text-align: left;
}

.tm-promo-image-2 {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .tm-promo-content h2 span {
        font-size: 40px;
    }

    .tm-promo-content p {
        font-size: 16px;
    }

    .tm-promo-image {
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .tm-promo-content h2 span {
        font-size: 36px;
    }

    .tm-promo-content p {
        font-size: 14px;
    }
}

.tm-countdown {
    margin-top: -30px;
}

.tm-countdown-pack {
    min-width: 100px;
    min-height: 100px;
    text-align: center;
    background: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.tm-countdown-pack:not(:last-child) {
    margin-left: 30px;
}

.tm-countdown-pack h2 {
    margin-bottom: 0;
    margin-top: -5px;
}

.tm-countdown-pack h5 {
    margin-bottom: 0;
    color: #444444;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-countdown-pack {
        min-width: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .tm-countdown-pack {
        min-width: 80px;
        min-height: 80px;
    }
}

/**
   * Blog
   */
/* Blog List Styels */
.tm-blog {
    color: ghostwhite;
    -o-transition: all 0.4s ease-in-out 0s;
}

.tm-blog-image,
.tm-blog-video,
.tm-blog-audio {
    position: relative;
}

.tm-blog-image a,
.tm-blog-video a,
.tm-blog-audio a {
    display: block;
}

.tm-blog-image img,
.tm-blog-video img,
.tm-blog-audio img {
    width: 100%;
}

.tm-blog-video:hover .blogitem-date,
.tm-blog-audio:hover .blogitem-date {
    opacity: 0;
    visibility: hidden;
}

.tm-blog-imageslider img {
    width: 100%;
}

.tm-blog-imageslider>.slick-list {
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.tm-blog-imageslider .tm-slider-arrow-prev,
.tm-blog-imageslider .tm-slider-arrow-next {
    height: 42px;
    width: 42px;
    font-size: 15px;
    border-radius: 0;
    visibility: visible;
    opacity: 1;
}

.tm-blog-imageslider .tm-slider-arrow-prev i,
.tm-blog-imageslider .tm-slider-arrow-next i {
    line-height: 42px;
}

.tm-blog-imageslider .tm-slider-arrow-prev {
    right: 0;
}

.tm-blog-imageslider .tm-slider-arrow-next {
    left: 0;
}

.tm-blog-imageslider.tm-slider-dots ul.slick-dots {
    bottom: 15px;
}

.tm-blog-content h3 {
    margin-bottom: 10px;
}

.tm-blog-content h5 {
    font-weight: 500;
    margin-bottom: 10px;
}

.tm-blog-content h5 a {
    color: #333333;
}

.tm-blog-content h5 a:hover {
    color: #3f51b5;
}

.tm-blog-content p {
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.9px;
    margin-right: 0%;
    font-size: 30px;
    text-align: justify;
    margin-left: 0%;
}

.tm-blog-content blockquote {
    margin-top: 25px;
    margin-bottom: 25px;
}

.tm-blog-content .tm-readmore {
    color: #fff;
}

.tm-blog-content .tm-readmore:hover {
    color: #fff;
}

.tm-blog-meta {
    margin-bottom: 5px;
}

.tm-blog-meta span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

.tm-blog-meta span::after {
    content: "|";
    padding: 0 10px;
}

.tm-blog-meta span:last-child::after {
    display: none;
}

.tm-blog-meta span i {
    margin-left: 5px;
    color: #3f51b5;
}

.tm-blog-meta a {
    color: #444444;
}

.tm-blog-meta a:hover {
    color: #3f51b5;
}

.tm-blog:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-slider-active>.slick-list {
    margin-right: 66%;
    margin-left: 0px;
    margin-top: -160px;
    margin-bottom: -82px;
}

.blog-slider-active .blog-slider-item {
    padding: 0px 44%;
    margin-top: -100px;
    margin-bottom: 20px;
}

/* Blog Details */
.tm-blog-tags {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 40px;
    position: relative;
}

.tm-blog-tags-title {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 28px;
    font-size: 18px;
}

.tm-blog-tags ul {
    display: inline-block;
    padding-right: 0;
    margin-bottom: 0;
    margin-top: -10px;
    font-size: 0;
}

.tm-blog-tags ul li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.tm-blog-tags ul li a {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e5e5e5;
    padding: 6px 22px;
    color: #444444;
}

.tm-blog-tags ul li a:hover {
    background: #3f51b5;
    border-color: #3f51b5;
    color: #ffffff;
}

.tm-blog-pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .tm-blog-tags ul li a {
        padding: 5px 15px;
    }
}

.tm-blog-details {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 0;
}

.tm-blog-details:hover {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tm-blog-details .tm-blog-content {
    padding: 0;
    padding-top: 30px;
}

/**
   * Brand Logo
   */
.brandlogo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.brandlogo a img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.brandlogo a:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.brandlogo a:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.brandlogo-slider .slick-list {
    margin-right: -15px;
    margin-left: -15px;
    margin-top: -15px;
    margin-bottom: -15px;
}

.brandlogo-slider .brandlogo {
    padding: 0 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/**
   * Why Choose
   */
.whychoose-content {
    margin-top: -7px;
    padding-left: 30px;
}

.whychoose-content h2 {
    font-size: 40px;
    font-weight: 700;
}

.whychoose-content h6 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
}

.whychoose-content>p {
    margin-top: 20px;
}

.whychoose-block {
    position: relative;
    padding-right: 65px;
    margin-left: 75px;
    margin-top: 25px;
}

.whychoose-block h5 {
    margin-bottom: 10px;
}

.whychoose-block p {
    margin-bottom: 0;
}

.whychoose-icon {
    position: absolute;
    right: 0;
    top: 3px;
    color: #3f51b5;
    font-size: 40px;
}

.whychoose-chart {
    margin-top: -7px;
}

.whychoose-chart h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .whychoose-content {
        padding-left: 0;
    }

    .whychoose-content h2 {
        font-size: 38px;
    }

    .whychoose-block {
        margin-left: 45px;
    }

    .whychoose-chart h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .whychoose-content {
        padding-left: 0;
    }

    .whychoose-content h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .whychoose-content h6 {
        font-size: 16px;
    }

    .whychoose-chart {
        margin-top: 40px;
    }

    .whychoose-chart h2 {
        font-size: 32px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 575px) {
    .whychoose-block {
        margin-left: 0;
    }
}

/**
   * Team Member
   */
.tm-member {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-member-top {
    position: relative;
    overflow: hidden;
}

.tm-member-top::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(50, 54, 61, 0.4);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    -o-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
    z-index: 1;
}

.tm-member-top img {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-member-social {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    text-align: center;
    z-index: 2;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.4s ease-in-out 0.1s;
    -o-transition: all 0.4s ease-in-out 0.1s;
    transition: all 0.4s ease-in-out 0.1s;
}

.tm-member-social ul {
    padding: 15px 0;
    padding-right: 0;
    margin-bottom: 0;
    font-size: 0;
}

.tm-member-social ul li {
    list-style: none;
    margin: 0 -2px;
    display: inline-block;
    font-size: 16px;
    -webkit-transition: all 0.4s ease-in-out 0.1s;
    -o-transition: all 0.4s ease-in-out 0.1s;
    transition: all 0.4s ease-in-out 0.1s;
}

.tm-member-social ul li:first-child {
    padding-right: 0;
}

.tm-member-social ul li:last-child {
    margin-left: 0;
}

.tm-member-social ul li a {
    font-size: 16px;
    color: #ffffff;
    display: inline-block;
    height: 34px;
    width: 34px;
    line-height: 1;
    text-align: center;
    background: #3f51b5;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-member-social ul li a i {
    line-height: 34px;
}

.tm-member-social ul li a:hover {
    background: #ffffff;
    color: #3f51b5;
    opacity: 0.8;
}

.tm-member-bottom {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
}

.tm-member-bottom h5 {
    margin-bottom: 5px;
}

.tm-member-bottom p {
    margin-bottom: 0;
}

.tm-member:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tm-member:hover .tm-member-top::before {
    visibility: visible;
    opacity: 1;
}

.tm-member:hover .tm-member-top img {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.tm-member:hover .tm-member-social {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.tm-member:hover .tm-member-social ul li {
    margin: 0 5px;
}

/**
   * Video Area
   */
.tm-video-content {
    margin-top: 30px;
    margin-bottom: -15px;
}

.tm-video-content h1,
.tm-video-content h2,
.tm-video-content h3,
.tm-video-content h4,
.tm-video-content h5,
.tm-video-content h6,
.tm-video-content p {
    color: #ffffff;
}

/**
   * Faq Area
   */
.tm-faq-image {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .tm-faq-image {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-faq-image {
        margin-bottom: 30px;
    }
}

/* Accordion Styles */
.tm-accordion {
    margin-top: -15px;
}

.tm-accordion .card {
    border: none;
    background: transparent;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.tm-accordion .card-header {
    padding: 0;
    background: transparent;
    border: 0;
}

.tm-accordion .card-header button {
    height: auto;
    display: block;
    width: 100%;
    text-align: right;
    font-family: "Rubik", sans-serif;
    color: #333333;
    line-height: 28px;
    font-weight: 500;
    text-decoration: none !important;
    border: 0;
    position: relative;
    white-space: inherit;
    padding: 10px 30px;
    padding-left: 55px;
    background: #3f51b5;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.tm-accordion .card-header button::before {
    content: "\f067";
    font-family: 'fontAwesome';
    position: absolute;
    right: auto;
    left: 0;
    top: 50%;
    margin-top: -15px;
    width: 40px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.tm-accordion .card-header button.collapsed::before {
    content: "\f067";
}

.tm-accordion .card-header button:not(.collapsed) {
    border-radius: 3px 3px 0 0;
    border-bottom: 1px solid #e5e5e5;
}

.tm-accordion .card-header button:not(.collapsed):before {
    content: "\f068";
}

.tm-accordion .card-body {
    padding: 30px;
    padding-bottom: 15px;
    border-radius: 0 0 3px 3px;
    background: #ffffff;
}

@media only screen and (max-width: 575px) {
    .tm-accordion .card-body {
        padding: 30px 15px;
        padding-bottom: 15px;
    }

    .tm-accordion .card-header button {
        padding-right: 15px;
    }
}

/**
   * Pricebox
   */
.tm-pricebox {
    padding: 45px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-pricebox-header h5 {
    margin-top: -5px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 35px;
}

.tm-pricebox-price {
    display: inline-block;
    border-bottom: 1px solid #e5e5e5;
}

.tm-pricebox-price h6 {
    font-family: "Karla", sans-serif;
    line-height: 1;
}

.tm-pricebox-price h6 span {
    font-size: 48px;
    font-family: "Rubik", sans-serif;
    line-height: 1;
    font-weight: 700;
}

.tm-pricebox-price h6 span sup {
    font-family: "Karla", sans-serif;
    font-weight: 500;
    line-height: 1;
    vertical-align: baseline;
    font-size: 26px;
}

.tm-pricebox-body {
    margin-top: 15px;
}

.tm-pricebox-body ul {
    padding-right: 0;
    margin-bottom: 0;
}

.tm-pricebox-body ul li {
    list-style: none;
    padding: 10px 0;
    line-height: 25px;
}

.tm-pricebox-body ul li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.tm-pricebox-footer {
    margin-top: 15px;
}

.tm-pricebox-footer .tm-button {
    padding: 0 25px;
}

.tm-pricebox.is-active {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tm-pricebox.is-active .tm-pricebox-price span {
    color: #3f51b5;
}

.tm-pricebox:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tm-pricebox {
        padding: 45px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .tm-pricebox {
        padding: 45px 30px;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

/**
   * Widgets
   */
.widget-title {
    position: relative;
    text-transform: uppercase;
    font-family: "Karla", sans-serif;
}

.widget-title:after {
    content: "";
    right: 0;
    bottom: 0;
    height: 2px;
    width: 70px;
    background: #3f51b5;
}

.single-widget ul {
    padding-right: 0;
    margin-bottom: 0;
}

.single-widget ul li {
    list-style: disc;
    color: #000;
}

/* Widget Info */
.widget-info-logo {
    display: inline-block;
    margin-bottom: -29px;
}

.widget-info .tm-button {
    margin-top: 20px;
}

/* Widget Contact */
.widget-contact ul {
    padding-left: 30px;
}

.widget-contact ul li {
    margin-bottom: 20px;
    position: relative;
    padding-right: 40px;
}

.widget-contact ul li i {
    position: absolute;
    right: 0;
    top: 5px;
    color: #3f51b5;
    font-size: 18px;
}

.widget-contact p {
    margin-bottom: 0;
}

.widget-contact a {
    color: #444444;
}

.widget-contact a:hover {
    color: #3f51b5;
}

/* Widget Recentpost */
.widget-recentpost ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-recentpost ul li:not(:last-child) {
    margin-bottom: 15px;
}

.widget-recentpost-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    max-width: 60px;
    margin-left: 15px;
    position: relative;
    -ms-flex-item-align: start;
    align-self: flex-start;
    border-radius: 3px;
    overflow: hidden;
}

.widget-recentpost-image::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(63, 81, 181, 0.85);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-recentpost-image::after {
    content: "\f0c1";
    font-family: "fontAwesome";
    font-weight: 900;
    position: absolute;
    right: 50%;
    top: 50%;
    color: #ffffff;
    font-size: 14px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}

.widget-recentpost-image:hover::before {
    opacity: 1;
    visibility: visible;
}

.widget-recentpost-image:hover::after {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.widget-recentpost-content {
    margin-top: -4px;
}

.widget-recentpost-content h6 {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.widget-recentpost-content h6 a {
    color: #333333;
}

.widget-recentpost-content h6 a:hover {
    color: #3f51b5;
}

.widget-recentpost-content span {
    font-size: 14px;
    color: #5e5e5e;
}

/* Widget Newsletter */
.widget-newsletter-form button,
.widget-newsletter-form [type="submit"] {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* Widget Quicklist */
.widget-quicklinks ul li:not(:last-child) {
    margin-bottom: 8px;
}

.widget-quicklinks ul li a {
    position: relative;
    /* padding-right: 25px; */
    text-decoration: none;
    font-size: small;
}

.widget-quicklinks ul li a:hover {
    color: #3f51b5;
    margin-right: 15px;
}

/* Widget Form */
.widget-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-search-form input[type="text"],
.widget-search-form input[type="search"] {
    border-left: 0;
    border-radius: 0 3px 3px 0;
}

.widget-search-form input[type="text"]:focus,
.widget-search-form input[type="search"]:focus {
    border-color: #e5e5e5;
}

.widget-search-form button,
.widget-search-form input[type="submit"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    padding: 0;
    border-radius: 3px 0 0 3px;
}

.widget-search-form button i,
.widget-search-form input[type="submit"] i {
    line-height: 1;
    vertical-align: text-top;
}

.widget-search-form button:hover,
.widget-search-form input[type="submit"]:hover {
    background: #3f51b5;
    border-color: #3f51b5;
    color: #ffffff;
}

/* Widget Categories */
.widget-categories ul li,
.widget-archives ul li,
.widget-serviceitems ul li {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.widget-categories ul li:first-child,
.widget-archives ul li:first-child,
.widget-serviceitems ul li:first-child {
    padding-top: 0;
}

.widget-categories ul li a,
.widget-archives ul li a,
.widget-serviceitems ul li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
}

.widget-categories ul li a::after,
.widget-archives ul li a::after,
.widget-serviceitems ul li a::after {
    content: "";
    clear: both;
    display: table;
}

.widget-categories ul li a:before,
.widget-archives ul li a:before,
.widget-serviceitems ul li a:before {
    content: "-";
    padding-left: 5px;
}

.widget-categories ul li a span,
.widget-archives ul li a span,
.widget-serviceitems ul li a span {
    float: left;
}

.widget-categories ul li a span::before,
.widget-archives ul li a span::before,
.widget-serviceitems ul li a span::before {
    content: "(";
}

.widget-categories ul li a span::after,
.widget-archives ul li a span::after,
.widget-serviceitems ul li a span::after {
    content: ")";
}

.widget-categories ul li a:hover,
.widget-archives ul li a:hover,
.widget-serviceitems ul li a:hover {
    color: #333333;
    font-weight: 700;
    padding-right: 13px;
}

.widget-categories ul li.active a,
.widget-archives ul li.active a,
.widget-serviceitems ul li.active a {
    color: #333333;
    font-weight: 700;
}

/* Widget Social */
.widget-social li {
    display: inline-block;
}

.widget-social li:not(:last-child) {
    margin-left: 26px;
}

.widget-social li a {
    font-size: 18px;
    color: #444444;
}

.widget-social li a:hover {
    color: #3f51b5;
}

/* Widget Tags */
.widget-tags ul {
    margin-right: -10px;
    margin-top: -10px;
    font-size: 0;
}

.widget-tags ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.widget-tags ul li a {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e5e5e5;
    padding: 6px 22px;
    color: #444444;
}

.widget-tags ul li a:hover {
    background: #3f51b5;
    border-color: #3f51b5;
    color: #ffffff;
}

/* Widget Size */
.widget-size ul li {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.widget-size ul li:first-child {
    padding-top: 0;
}

.widget-size ul li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
}

.widget-size ul li a:hover {
    color: #333333;
    font-weight: 700;
    padding-right: 13px;
}

/* Widget Price Filter */
.widget-pricefilter-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px;
}

.widget-pricefilter-price {
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    line-height: 30px;
    margin-bottom: 0;
    font-size: 14px;
}

.widget-pricefilter-button {
    display: inline-block;
    border: 1px solid #aaaaaa;
    color: #333333;
    font-weight: 500;
    font-family: "Karla", sans-serif;
    font-size: 15px;
    height: 32px;
    line-height: 30px;
    padding: 0 20px;
}

.widget-pricefilter-button:focus {
    outline: none;
}

.widget-pricefilter-button:hover {
    background: #3f51b5;
    border-color: #3f51b5;
    color: #ffffff;
}

.widget-pricefilter .tm-rangeslider {
    background: #ebebeb;
    height: 6px;
    width: 100%;
    position: relative;
    margin: 5px 0;
}

.widget-pricefilter .tm-rangeslider-bar {
    background: #656565;
    height: 7px;
    position: absolute;
}

.widget-pricefilter .tm-rangeslider-leftgrip,
.widget-pricefilter .tm-rangeslider-rightgrip {
    height: 15px;
    background: #3f51b5;
    width: 10px;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -7.5px;
}

/* Widget Popular Product */
.widget-popularproduct ul li,
.widget-relatedproduct ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.widget-popularproduct ul li:first-child,
.widget-relatedproduct ul li:first-child {
    padding-top: 0;
}

.widget-popularproduct-image,
.widget-relatedproduct-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    max-width: 80px;
    margin-left: 15px;
    display: inline-block;
    -ms-flex-item-align: start;
    align-self: flex-start;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.widget-popularproduct-image::before,
.widget-relatedproduct-image::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-popularproduct-image::after,
.widget-relatedproduct-image::after {
    content: "\f0c1";
    font-family: "fontAwesome";
    position: absolute;
    right: 50%;
    top: 50%;
    color: #ffffff;
    font-size: 14px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}

.widget-popularproduct-image:hover::before,
.widget-relatedproduct-image:hover::before {
    opacity: 1;
    visibility: visible;
}

.widget-popularproduct-image:hover::after,
.widget-relatedproduct-image:hover::after {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.widget-popularproduct-content h6,
.widget-relatedproduct-content h6 {
    margin-bottom: 0;
}

.widget-popularproduct-content h6 a,
.widget-relatedproduct-content h6 a {
    color: #333333;
}

.widget-popularproduct-content h6 a:hover,
.widget-relatedproduct-content h6 a:hover {
    color: #3f51b5;
}

.sidebar-widgets {
    margin-top: -30px;
}

.sidebar-widgets .single-widget {
    padding: 30px;
    margin-top: 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar-widgets .single-widget {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-widgets {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .sidebar-widgets .single-widget {
        padding: 20px;
    }
}

.sidebar-widgets-2 {
    margin-top: -40px;
}

.sidebar-widgets-2 .single-widget {
    margin-top: 40px;
}

@media only screen and (min-width: 320px) and (max-width: 574px) {
    .single-widget ul {
        font-size: smaller;
    }

    div.wrapper.wrapper {
        margin-bottom: 0px;
    }

    div.footer.footer-copyrightarea {
        font-size: smaller;
    }

    div.footer.fixed-footer {
        position: relative;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-widgets-2 {
        margin-top: 50px;
    }
}

/**
   * Portfolio
   */
.tm-portfolio {
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 3px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tm-portfolio-buttons {
    font-size: 0;
    margin-top: -6px;
    margin-bottom: 40px;
}

.tm-portfolio-buttons button {
    font-size: 16px;
    font-weight: 700;
    color: #444444;
    border: none;
    height: auto;
    line-height: 26px;
    padding: 0;
    margin: 0 13px;
}

.tm-portfolio-buttons button:hover,
.tm-portfolio-buttons button.is-active {
    color: #3f51b5;
}

.tm-portfolio-image {
    position: relative;
    overflow: hidden;
}

.tm-portfolio-image:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(50, 54, 61, 0.7);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-portfolio-image img {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-portfolio-image-slider {
    position: relative;
}

.tm-portfolio-video iframe {
    border: none;
    outline: none;
}

.tm-portfolio-content {
    background: #ffffff;
    padding: 30px 20px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    z-index: 3;
}

.tm-portfolio-content h5 {
    color: #333333;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: center;
}

.tm-portfolio-content h5 a {
    color: #333333;
}

.tm-portfolio-content h5 a:hover {
    color: #3f51b5;
}

.tm-portfolio-content h6 {
    color: #444444;
    font-family: "Karla", sans-serif;
    margin-bottom: 0;
    font-weight: 400;
}

.tm-portfolio-content h6 a {
    color: #444444;
}

.tm-portfolio-content h6 a:hover {
    color: #3f51b5;
}

.tm-portfolio-actions {
    padding-right: 0;
    margin-bottom: 0;
    position: absolute;
    right: 50%;
    top: 50%;
    font-size: 0;
    z-index: 2;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.tm-portfolio-actions li {
    list-style: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    vertical-align: middle;
}

.tm-portfolio-actions li:first-child {
    margin-right: 0;
}

.tm-portfolio-actions li:last-child {
    margin-left: 0;
}

.tm-portfolio-actions li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    line-height: 1;
    text-align: center;
    font-size: 16px;
    color: #444444;
    background: #ffffff;
    display: none;
    border-radius: 100px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
    -webkit-transition: all 0.4s ease-in-out 0.2s;
    -o-transition: all 0.4s ease-in-out 0.2s;
    transition: all 0.4s ease-in-out 0.2s;
}

.tm-portfolio-actions li a i {
    line-height: 36px;
}

.tm-portfolio-actions li a:first-child {
    display: block;
}

.tm-portfolio-actions li a:hover {
    background: #3f51b5;
    color: #ffffff;
}

.tm-portfolio:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tm-portfolio:hover .tm-portfolio-image::before {
    visibility: visible;
    opacity: 1;
}

.tm-portfolio:hover .tm-portfolio-image img {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.tm-portfolio:hover .tm-portfolio-actions li a {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* Portfolio Details */
.tm-portfoliodetails-image img {
    width: 100%;
}

.tm-portfoliodetails-gallery .tm-slider-arrow-prev {
    right: 15px;
}

.tm-portfoliodetails-gallery .tm-slider-arrow-next {
    left: 15px;
}

.tm-portfoliodetails-info {
    padding: 30px;
    border-radius: 3px;
    border: 1px solid #e5e5e5;
    background: #f7f9fb;
}

.tm-portfoliodetails-info>ul {
    padding-right: 0;
    margin-bottom: 0;
}

.tm-portfoliodetails-info>ul>li {
    list-style: none;
    font-size: 16px;
}

.tm-portfoliodetails-info>ul>li:not(:last-child) {
    margin-bottom: 15px;
}

.tm-portfoliodetails-info>ul>li b {
    font-weight: 700;
    margin-left: 10px;
}

.tm-portfoliodetails-info .tm-rating {
    display: inline-block;
}

.tm-portfoliodetails-share {
    display: inline-block;
    padding-right: 0;
    margin-bottom: 0;
}

.tm-portfoliodetails-share li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
}

.tm-portfoliodetails-share li a {
    display: inline-block;
    vertical-align: middle;
    color: #444444;
}

.tm-portfoliodetails-share li a:hover {
    color: #3f51b5;
}

.tm-portfoliodetails-description h3 {
    font-weight: 700;
    margin-top: -6px;
}

.tm-portfoliodetails-description ul {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .tm-portfoliodetails-description {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-portfoliodetails-info {
        padding: 20px;
    }
}

/**
   * Contact
   */
.tm-contact-block {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px 50px;
    overflow: hidden;
    border-radius: 3px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.tm-contact-block h5 {
    margin-bottom: 10px;
}

.tm-contact-block p {
    margin-bottom: 0;
}

.tm-contact-block p a {
    color: #444444;
}

.tm-contact-block p a:hover {
    color: #3f51b5;
}

.tm-contact-icon {
    display: inline-block;
    height: 93px;
    width: 93px;
    line-height: 89px;
    font-size: 40px;
    text-align: center;
    border-radius: 999px;
    border: 1px solid #3f51b5;
    margin-bottom: 25px;
    color: #3f51b5;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-contact-formwrapper {
    padding: 60px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tm-contact-formwrapper h5 {
    margin-bottom: 20px;
    margin-top: -4px;
}

.tm-contact-map {
    height: 611px;
}

.tm-contact-map #google-map {
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .tm-contact-block {
        padding: 30px;
    }

    .tm-contact-icon {
        height: 75px;
        width: 75px;
        line-height: 73px;
        font-size: 32px;
    }

    .tm-contact-formwrapper {
        padding: 30px;
    }

    .tm-contact-map {
        height: 350px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-contact-formwrapper {
        padding: 20px;
    }

    .tm-contact-map {
        height: 300px;
    }
}

/**
   * Shop
   */
.tm-shop-header {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -15px;
}

.tm-shop-header .nice-select {
    width: auto;
    min-width: 200px;
    margin-top: 15px;
}

.tm-shop-header .nice-select .list {
    width: 100%;
}

.tm-shop-countview {
    margin-bottom: 0;
    -webkit-box-flex: 100;
    -ms-flex-positive: 100;
    flex-grow: 100;
    margin-top: 15px;
}

/**
   * Call To Action
   */
.tm-cta {
    padding: 30px 0;
}

.tm-cta-content h3 {
    color: #ffffff;
    margin-bottom: 0;
}

.tm-cta-button {
    text-align: left;
    position: relative;
    padding-right: 60px;
}

.tm-cta-button::before {
    content: url(../images/icons/long-right-arrow.png);
    right: 0;
    top: 50%;
    width: 50px;
    line-height: 1;
    position: absolute;
    margin-top: -7px;
    -webkit-animation: tmLeftToRight 2s ease-in-out 0s infinite both;
    animation: tmLeftToRight 2s ease-in-out 0s infinite both;
}

@media only screen and (max-width: 767px) {
    .tm-cta-content {
        text-align: right;
    }

    .tm-cta-button {
        text-align: right;
        padding-right: 0;
        margin-top: 25px;
    }

    .tm-cta-button::before {
        display: none;
    }
}


/**
 * 404 Styles
 */
.tm-pnf {
    text-align: center;
    position: relative;
    padding: 100px 0;
}

.tm-pnf h1 {
    position: absolute;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    font-size: 25rem;
    opacity: 0.06;
}

.tm-pnf h2 {
    color: #3f51b5;
    font-weight: 700;
}

.tm-pnf .tm-button {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .tm-pnf {
        padding: 50px 0;
    }

    .tm-pnf h1 {
        font-size: 15rem;
    }
}

@media only screen and (max-width: 575px) {
    .tm-pnf {
        padding: 50px 0;
    }

    .tm-pnf h1 {
        font-size: 10rem;
    }
}

/**
   * Footer
   */
.footer-copyrightarea {
    padding: 0px;
    background-color: #e7e7e8;
    text-align: center;
    font-size: small;
    line-height: 0px;
    margin-top: -32px;
    position: relative;
    z-index: 99;
}

.footeraddressdetail {
    margin-top: -15px;
}

img.iconsocialfooter {
    scale: 0.6;
}

.footer-copyright {
    margin-bottom: 0;
    color: #000;
    padding: 5px 0 0 20px;
}

#footersec2 {
    padding-bottom: 30px;
}

ul.footeraddress {
    list-style-type: none;
    text-align: right;
    font-size: small;
}

.footer-copyright a {
    font-weight: 500;
    color: #ffffff;
}

.footer-copyright a:hover {
    opacity: 0.75;
}

.footer-copyrightsocial {
    text-align: left;
    padding: 5px 0;
    text-align: center;
}

.footer-copyrightsocial ul {
    padding-right: 0;
    margin-bottom: 10px;
    padding-left: 25px;
}

.footer-copyrightsocial ul li {
    list-style: none;
    display: inline-block;
    padding-left: 1%;
}

.footer-copyrightsocial ul li:not(:last-child) {
    margin-left: -10px;
}

.footer-copyrightsocial ul li a {
    font-size: 16px;
    display: inline-block;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50px;
}

.footerlink {
    font-size: medium;
    margin-left: -15%;
}

#logofooter {
    scale: 0.7;
    margin-top: -10%;
    margin-right: 5%;
}

.footer-copyrightsocial ul li a:hover {
    /* background: #3f51b5; */
    color: #ffffff;
}

.footer-widgets {
    margin-top: -7%;
    margin-right: 20px;
    margin-left: 0px;
}

.footer-widgets .single-widget {
    color: #dedede;
    margin-top: 50px;
}

.footer-widgets .single-widget a:not(.tm-button) {
    color: #000;
}

.footer-widgets .single-widget a:not(.tm-button):hover {
    opacity: 0.75;
    color: #000;
}

.footer-widgets .widget-title {
    color: #000;
    font-family: 'diodrumen';
    font-weight: Bold;
}

.footer-widgets .widget-title:after {
    content: "";
    height: 2px;
    width: 80px;
    background: #3f51b5;
}

.footer-widgets .widget-recentpost ul {
    padding-top: 5px;
}

.footer-widgets .widget-recentpost-content h6 {
    color: #ffffff;
    font-size: 15px;
}

.footer-widgets .widget-recentpost-content h6 a {
    color: #ffffff;
}

.footer-widgets .widget-recentpost-content h6 a:hover {
    color: #3f51b5;
}

.footer-widgets .widget-recentpost-content span {
    color: #aaaaaa;
}

.footer-widgets .widget-newsletter-form {
    padding-top: 10px;
}

.footer-widgets .widget-newsletter-form input:not([type="submit"]) {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-widgets .widget-newsletter-form input:not([type="submit"])::-webkit-input-placeholder {
    color: #ffffff;
}

.footer-widgets .widget-newsletter-form input:not([type="submit"]):-moz-placeholder {
    color: #ffffff;
}

.footer-widgets .widget-newsletter-form input:not([type="submit"])::-moz-placeholder {
    color: #ffffff;
}

.footer-widgets .widget-newsletter-form input:not([type="submit"]):-ms-input-placeholder {
    color: #ffffff;
}

.footer-widgets .widget-newsletter-form input:not([type="submit"]):focus {
    background: rgba(63, 81, 181, 0.2);
    border-color: rgba(63, 81, 181, 0.6);
}

/**
   * Product Details
   */
.tm-prodetails-images {
    width: 100%;
}

.tm-prodetails-largeimages {
    overflow: hidden;
    border-radius: 3px;
    overflow: hidden;
}

.tm-prodetails-largeimage a {
    position: relative;
    z-index: 1;
    display: block;
}

.tm-prodetails-largeimage a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-prodetails-largeimage a::after {
    content: "\f00e";
    font-family: 'fontAwesome';
    position: absolute;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    font-size: 70px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tm-prodetails-largeimage a:hover::before {
    visibility: visible;
    opacity: 1;
}

.tm-prodetails-largeimage a:hover::after {
    visibility: visible;
    opacity: 1;
}

.tm-prodetails-thumbnails {
    overflow: hidden;
}

.tm-prodetails-thumbnails .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.tm-prodetails-thumbnails .tm-slider-arrow-prev,
.tm-prodetails-thumbnails .tm-slider-arrow-next {
    height: 42px;
    width: 42px;
    font-size: 15px;
    border-radius: 3px;
    opacity: 0.8;
}

.tm-prodetails-thumbnails .tm-slider-arrow-prev i,
.tm-prodetails-thumbnails .tm-slider-arrow-next i {
    line-height: 42px;
}

.tm-prodetails-thumbnails .tm-slider-arrow-prev {
    right: 0;
    left: auto;
}

.tm-prodetails-thumbnails .tm-slider-arrow-next {
    left: 0;
    right: auto;
}

.tm-prodetails-thumbnail {
    margin: 0 4px;
    margin-top: 9px;
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 3px;
    overflow: hidden;
}

.tm-prodetails-thumbnail.slick-current {
    border-color: #3f51b5;
}

.tm-prodetails-title {
    margin-top: -5px;
    margin-bottom: 5px;
}

.tm-prodetails-title a {
    color: #333333;
}

.tm-prodetails-title a:hover {
    color: #3f51b5;
}

.tm-prodetails-availability {
    margin-top: 5px;
}

.tm-prodetails-availability span {
    color: #3f51b5;
}

.tm-prodetails-price {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
}

.tm-prodetails-price del {
    font-size: 75%;
    color: #7a7a7a;
    font-weight: 600;
}

.tm-prodetails-quantitycart {
    margin-top: 30px;
    margin-bottom: 30px;
}

.tm-prodetails-quantitycart .tm-quantitybox {
    margin-left: 20px;
}

.tm-prodetails-color,
.tm-prodetails-size,
.tm-prodetails-categories,
.tm-prodetails-tags,
.tm-prodetails-share {
    border-top: 1px dashed #e5e5e5;
    padding: 12px 0;
}

.tm-prodetails-color>h6,
.tm-prodetails-size>h6,
.tm-prodetails-categories>h6,
.tm-prodetails-tags>h6,
.tm-prodetails-share>h6 {
    margin-bottom: 0;
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.tm-prodetails-color ul,
.tm-prodetails-size ul,
.tm-prodetails-categories ul,
.tm-prodetails-tags ul,
.tm-prodetails-share ul {
    display: inline-block;
    padding-right: 0;
    margin-bottom: 0;
}

.tm-prodetails-color ul li,
.tm-prodetails-size ul li,
.tm-prodetails-categories ul li,
.tm-prodetails-tags ul li,
.tm-prodetails-share ul li {
    list-style: none;
    display: inline-block;
}

.tm-prodetails-color ul li a,
.tm-prodetails-size ul li a,
.tm-prodetails-categories ul li a,
.tm-prodetails-tags ul li a,
.tm-prodetails-share ul li a {
    display: inline-block;
    vertical-align: middle;
    color: #444444;
}

.tm-prodetails-color ul li a:hover,
.tm-prodetails-size ul li a:hover,
.tm-prodetails-categories ul li a:hover,
.tm-prodetails-tags ul li a:hover,
.tm-prodetails-share ul li a:hover {
    color: #3f51b5;
}

.tm-prodetails-color ul {
    font-size: 0;
    line-height: 1;
    vertical-align: middle;
}

.tm-prodetails-color ul li:not(:last-child) {
    margin-left: 10px;
}

.tm-prodetails-color ul li span {
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    display: inline-block;
    border-radius: 100px;
    vertical-align: middle;
    font-size: 14px;
    border: 2px solid transparent;
}

.tm-prodetails-color ul li.is-checked span {
    border-color: #3f51b5;
}

.tm-prodetails-color ul li.red span {
    background: red;
}

.tm-prodetails-color ul li.green span {
    background: green;
}

.tm-prodetails-color ul li.blue span {
    background: blue;
}

.tm-prodetails-color ul li.black span {
    background: black;
}

.tm-prodetails-size ul li span {
    cursor: pointer;
}

.tm-prodetails-size ul li.is-checked span {
    text-decoration: underline;
}

.tm-prodetails-categories ul li::after,
.tm-prodetails-tags ul li::after {
    content: ",";
}

.tm-prodetails-categories ul li:last-child::after,
.tm-prodetails-tags ul li:last-child::after {
    display: none;
}

.tm-prodetails-share ul li {
    margin-left: 10px;
}

.tm-prodetails-description ul {
    padding-right: 0;
    margin-bottom: 0;
}

.tm-prodetails-description ul li {
    list-style: none;
}

.tm-prodetails-review>h5 {
    font-weight: 500;
    margin-bottom: 30px;
}

.tm-prodetails-review .tm-rating {
    line-height: 1;
    vertical-align: middle;
}

@media only screen and (max-width: 767px) {
    .tm-prodetails-content {
        margin-top: 40px;
    }
}

/* Quantitybox */
.tm-quantitybox {
    position: relative;
    display: inline-block;
    width: 90px;
}

.tm-quantitybox input {
    padding-right: 5px;
    padding-left: 30px;
    text-align: center;
}

.tm-quantitybox input:focus {
    border-color: #e5e5e5;
}

.tm-quantitybox-button {
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #e5e5e5;
    height: 25.5px;
    width: 25px;
    line-height: 23px;
    text-align: center;
    cursor: pointer;
}

.tm-quantitybox-button.increment-button {
    top: 0;
}

.tm-quantitybox-button.decrement-button {
    top: auto;
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .tm-quantitybox-button {
        height: 22.5px;
    }
}

/* Quickview */
.tm-quickview-popup {
    padding-left: 0 !important;
}

.tm-quickview-popup .close {
    position: absolute;
    right: auto;
    left: 3px;
    top: 3px;
    background: #3f51b5;
    font-size: 15px;
    text-shadow: none;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #ffffff;
    opacity: 1;
    line-height: 1;
    z-index: 1;
}

.tm-quickview-popup .close i {
    line-height: 30px;
    height: auto;
}

.tm-quickview-popup .close:hover {
    color: #ffffff !important;
}

.tm-quickview-popup .modal-dialog {
    max-width: inherit !important;
    position: relative;
    margin: 0;
}

.tm-quickview-popup .modal-content {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.tm-quickview-popup .tm-prodetails {
    background: #ffffff;
    padding: 30px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .tm-quickview-popup .tm-prodetails {
        padding: 20px;
    }
}

/**
   * Shopping Cart
   */
.tm-cart-table {
    text-align: center;
}

.tm-cart-table tr th {
    text-transform: uppercase;
    color: #333333;
    font-weight: 700;
}

.tm-cart-table tr td {
    vertical-align: middle;
}

.tm-cart-table .tm-cart-col-image {
    width: 180px;
    min-width: 180px;
}

.tm-cart-table .tm-cart-col-remove {
    width: 100px;
    min-width: 100px;
}

.tm-cart-table .tm-cart-col-productname {
    min-width: 250px;
}

.tm-cart-table .tm-cart-col-price,
.tm-cart-table .tm-cart-col-total {
    min-width: 100px;
}

.tm-cart-table .tm-cart-productimage {
    margin: 5px 30px;
    display: inline-block;
    border: 1px solid #e5e5e5;
}

.tm-cart-table .tm-cart-productname {
    color: #333333;
    font-weight: 600;
}

.tm-cart-table .tm-cart-productname:hover {
    color: #3f51b5;
}

.tm-cart-table .tm-cart-totalprice {
    font-weight: 700;
    color: #444444;
}

.tm-cart-table .tm-cart-removeproduct {
    border: none;
}

.tm-cart-table .tm-cart-removeproduct:hover {
    color: #3f51b5;
}

.tm-cart-table .tm-cart-removeproduct:focus {
    outline: none;
}

@media only screen and (max-width: 767px) {
    .tm-cart-table .tm-cart-col-image {
        width: 150px;
        min-width: 150px;
    }

    .tm-cart-table .tm-cart-productimage {
        margin: 5px 20px;
    }
}

.tm-cart-bottomarea {
    margin-top: 60px;
}

.tm-cart-coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tm-cart-coupon label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.tm-cart-coupon input:not([type="submit"]) {
    margin-left: 10px;
    max-width: 220px;
    margin-bottom: 10px;
}

.tm-cart-pricebox {
    text-align: left;
}

.tm-cart-pricebox>h2 {
    margin-top: -8px;
    font-weight: 700;
}

.tm-cart-pricebox table {
    margin-bottom: 30px;
}

.tm-cart-pricebox table td {
    padding: 0;
    font-size: 16px;
    color: #444444;
}

.tm-cart-pricebox table .tm-cart-pricebox-shipping td {
    padding-top: 5px;
}

.tm-cart-pricebox table .tm-cart-pricebox-total td {
    color: #333333;
    font-weight: 700;
    font-size: 22px;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .tm-cart-bottomarea {
        margin-top: 40px;
    }

    .tm-cart-pricebox {
        text-align: right;
        margin-top: 30px;
    }
}

/**
   * Checkout
   */
.tm-checkout-coupon {
    margin-bottom: 50px;
}

.tm-checkout-coupon>a {
    display: block;
    background: transparent;
    padding: 13px 20px;
    font-size: 14px;
    color: #333333;
    border: 5px solid transparent;
    border-right: 5px solid #3f51b5;
    -webkit-box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.1);
}

.tm-checkout-coupon>a span {
    color: #3f51b5;
    font-weight: 600;
}

.tm-checkout-couponform {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tm-checkout-couponform input:not([type="submit"]) {
    max-width: 300px;
    border-left-color: transparent;
}

.tm-checkout-form .small-title {
    font-weight: 700;
    text-transform: uppercase;
}

.tm-checkout-differentform {
    display: none;
}

.tm-checkout-differentform .tm-form-inner {
    margin-top: 0;
}

.tm-checkout-orderinfo {
    background: #f7f9fb;
    padding: 30px;
}

.tm-checkout-ordertable td,
.tm-checkout-ordertable th {
    padding: 0;
}

.tm-checkout-ordertable thead th {
    text-transform: uppercase;
    font-size: 16px;
    padding-bottom: 10px;
}

.tm-checkout-ordertable thead th+th {
    text-align: left;
}

.tm-checkout-ordertable tbody {
    border-top: 2px solid #e5e5e5;
}

.tm-checkout-ordertable tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.tm-checkout-ordertable tbody td {
    padding: 10px 0;
}

.tm-checkout-ordertable tbody td+td {
    text-align: left;
}

.tm-checkout-ordertable tfoot tr:first-child td {
    padding-top: 25px;
}

.tm-checkout-ordertable tfoot tr td+td {
    text-align: left;
}

.tm-checkout-subtotal td,
.tm-checkout-shipping td {
    font-size: 16px;
    padding: 5px 0;
}

.tm-checkout-subtotal td+td,
.tm-checkout-shipping td+td {
    color: #333333;
    font-weight: 700;
}

.tm-checkout-total td {
    padding-top: 15px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.tm-checkout-total td+td {
    color: #3f51b5;
}

.tm-checkout-payment {
    margin-top: 20px;
}

.tm-checkout-payment label {
    margin-bottom: 0;
    display: block;
    color: #333333;
    font-weight: 700;
}

.tm-checkout-payment-content {
    display: none;
    padding-right: 25px;
    padding-top: 10px;
}

.tm-checkout-payment-content p {
    margin-bottom: 0;
}

.tm-checkout-submit {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .tm-checkout-orderinfo {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .tm-checkout-orderinfo {
        padding: 20px;
    }
}

/**
   * My Account
   */
.tm-myaccount-dashboard,
.tm-myaccount-address {
    border: 1px solid #e5e5e5;
    padding: 30px;
}

.tm-myaccount-dashboard p a {
    color: #3f51b5;
}

.tm-myaccount-dashboard p a:hover {
    color: #3f51b5;
}

.tm-myaccount-orders table {
    text-align: center;
}

.tm-myaccount-orders table th,
.tm-myaccount-orders table td {
    vertical-align: middle;
}

.tm-myaccount-orders-col-id {
    min-width: 100px;
}

.tm-myaccount-orders-col-date {
    min-width: 170px;
}

.tm-myaccount-orders-col-status {
    min-width: 100px;
}

.tm-myaccount-orders-col-total {
    min-width: 180px;
}

.tm-myaccount-orders-col-view {
    min-width: 120px;
}

.tm-myaccount-address>p {
    margin-bottom: 25px;
}

.tm-myaccount-address-billing,
.tm-myaccount-address-shipping {
    border: 1px solid #e5e5e5;
    padding: 30px;
}

.tm-myaccount-address-billing::after,
.tm-myaccount-address-shipping::after {
    content: "";
    clear: both;
    display: table;
}

.tm-myaccount-address-billing h3,
.tm-myaccount-address-shipping h3 {
    font-weight: 700;
}

.tm-myaccount-address-billing address,
.tm-myaccount-address-shipping address {
    margin-bottom: 0;
}

.tm-myaccount-address-billing a.edit-button,
.tm-myaccount-address-shipping a.edit-button {
    float: left;
    padding: 0 8px;
    background: #3f51b5;
    color: #ffffff;
    border-radius: 3px;
    margin-top: 5px;
}

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

    .tm-myaccount-dashboard,
    .tm-myaccount-address {
        padding: 20px;
    }

    .tm-myaccount-address-billing,
    .tm-myaccount-address-shipping {
        padding: 20px;
    }
}

/* Login Register Popup */
.tm-loginregister-popup {
    padding-left: 0 !important;
}

.tm-loginregister-popup .close {
    position: absolute;
    right: auto;
    left: 3px;
    top: 3px;
    background: #3f51b5;
    font-size: 15px;
    text-shadow: none;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #ffffff;
    opacity: 1;
    line-height: 1;
    z-index: 1;
}

.tm-loginregister-popup .close i {
    line-height: 30px;
    height: auto;
}

.tm-loginregister-popup .close:hover {
    color: #ffffff !important;
}

.tm-loginregister-popup .modal-dialog {
    max-width: inherit !important;
    position: relative;
    margin: 0;
}

.tm-loginregister-popup .modal-content {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.tm-loginregister-popup .tm-loginregister {
    background: #ffffff;
    padding: 30px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

div.tm-section.about-us-area.tm-padding-section3.educationsection {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset51.png);
    background-size: 30%;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 575px) {
    .tm-loginregister-popup .tm-loginregister {
        padding: 20px;
    }
}

.modal-backdrop {
    background: #2e2d2d;
}

.modal-backdrop.show {
    opacity: .95;
}


/* RTL CSS */
body {
    direction: rtl;
    background-color: #eff0f0;
}

.tm-button,
a.tm-button,
button.tm-button {
    direction: ltr;
    text-decoration: unset;
}

.slick-slide {
    float: right;
}

.lg-actions .lg-prev:after {
    content: "\e095";
}

.lg-actions .lg-next:before {
    content: "\e094";
}

.tm-navigation .tm-navigation-dropdown>a::after {
    display: none;
}

.tm-navigation .tm-navigation-dropdown>a::before {
    /* content: "\f107"; */
    font-family: 'fontAwesome';
    padding-right: 3px;
}

.tm-navigation .tm-navigation-dropdown ul li.has-child>a::after {
    display: none;
}

.tm-navigation .tm-navigation-dropdown ul li.has-child>a::before {
    /* content: "\f104"; */
    font-family: 'fontAwesome';
    float: left;
}

.tm-navigation .tm-navigation-megamenu>a::after {
    display: none;
}

.tm-navigation .tm-navigation-megamenu>a::before {
    content: "\f107";
    font-family: 'fontAwesome';
    padding-right: 3px;
}

[class^="flaticon-"]::before,
[class^="flaticon-"]::after,
[class*=" flaticon-"]::before,
[class*=" flaticon-"]::after,
[class^="flaticon-"]::before,
[class^="flaticon-"]::after,
[class*=" flaticon-"]::before,
[class*=" flaticon-"]::after {
    margin-left: 0;
}

.header-mobilemenu .mean-container a.meanmenu-reveal {
    margin-top: -50px;
}

@font-face {
    font-family: IranSans;
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/IRANSansWeb.eot');
    src: url('./fonts/IRANSansWeb.eot?#iefix') format('embedded-opentype')
        /* IE6-8 */
        ,
        url('./fonts/IRANSansWeb.woff2') format('woff2')
        /* FF39+,Chrome36+, Opera24+*/
        ,
        url('./fonts/IRANSansWeb.woff') format('woff')
        /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
        ,
        url('./fonts/IRANSansWeb.ttf') format('truetype');
}

@font-face {
    font-family: 'diodrumen';
    src: url('<?php get_template_directory_uri(); ?>/Diodrum-Light.woff') format('woff'),
        url('<?php get_template_directory_uri(); ?>/Diodrum-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IranSans';
    src: url('fonts/IRANSans-web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: IranSans;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/IRANSansWeb.woff2) format("woff2");
}

@font-face {
    font-family: IranSans-web;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/IRANSans-web.woff) format("woff");
}

@font-face {
    font-family: lalezar;
    src: url(/wp-content/themes/RoozbehChocolate/Lalezar.woff2) format("woff2"),
        url(/wp-content/themes/RoozbehChocolate/Lalezar.woff) format("woff");
}

@font-face {
    font-family: diodrum;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/DiodrumArabicMedium.woff) format("woff"),
        url(/wp-content/themes/RoozbehChocolate/assets/fonts/DiodrumArabicMedium.woff2) format("woff2");
}

@font-face {
    font-family: diodrumBold;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/DiodrumArabicBold.woff) format("woff"),
        url(/wp-content/themes/RoozbehChocolate/assets/fonts/DiodrumArabicBold.woff2) format("woff2");
}

@font-face {
    font-family: diodrumenmedium;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/Diodrum-Medium.woff) format("woff"),
        url(/wp-content/themes/RoozbehChocolate/assets/fonts/Diodrum-Medium.woff2) format("woff2");
}

@font-face {
    font-family: diodrumenlight;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/Diodrum-Light.woff) format("woff"),
        url(/wp-content/themes/RoozbehChocolate/assets/fonts/Diodrum-Light.woff2) format("woff2");
}

@font-face {
    font-family: BNazanin;
    src: url(/wp-content/themes/RoozbehChocolate/assets/fonts/BNazanin.ttf) format("ttf");

}

.Diodrum-regular {
    font-family: "diodrum", system-ui;
    font-weight: 400;
    font-style: normal;
}

.lalezar-regular {
    font-family: "Lalezar", system-ui;
    font-weight: 400;
    font-style: normal;
}

#prolable {
    font-size: 34px;
    text-align: left;
    font-weight: 900;
}

div.row.mt-30-reverse.proimg {
    scale: 0.7;
    margin-top: -10%;
}

#location {
    margin-top: 5%;
    margin-right: 15%;
    scale: 1.1;
}

iframe {
    border: double;
    border-radius: 5px;
    color: #f5f5f5;
}

.hrrotate {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.st1 {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/Image/Asset45.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.tm-service-content ul li {
    padding: 15px;
    text-align: justify;
    list-style-type: disc;
}

.tm-service-content ul {
    padding: 0px;
    display: ruby;
    text-align: right;
}

#newproduct h1 {
    direction: rtl;
    text-align: center;
    font-size: x-large;
}

div.newpropage {
    font-size: x-small;
    text-align: center
}

#newproduct p {
    color: #000;
    text-align: justify;
    direction: rtl;
}

#newproduct {
    background-image: url(/Roozbeh/images/PNG/Asset49.png);
    background-size: 105%;
    background-repeat: no-repeat;
    background-position: top;
    height: 830px;
}

#imgnewpro {
    padding: 100px;
}

#pnewpro {
    padding: 50px;
}

.newproduct-section {
    position: relative;
    padding: 60px 0 70px;
    background-size: 90%;
    height: 70%;
    background-repeat: no-repeat;
    background-position: top;
}

#newproductimg {
    height: 500px;
    width: 1080px;
}

#newproducth1fa {
    font-family: lalezar;
    text-align: center;
}

.newpropage {
    text-align: justify;
    width: 400px;
    height: 400px;
    direction: rtl;
    font-family: 'Diodrumen';
    padding: 30px;
    font-size: 16px;
    background-size: contain;
}

div.newpropage {
    display: flow;
    float: right;
    padding: 68px;
    margin-right: 6%;
    margin-top: 10%;
    zoom: 130%;
}

.newprobtn {
    height: 30px;
    margin-top: 15px;
}


div.tm-about-content {
    padding: 10%;
    margin-top: 0%;
}

div.tm-about-image {
    padding: 0px;
    padding-left: 0px;
}

strong {
    font-family: 'Diodrumen';
    font-size: 22px;
    direction: rtl;
    justify-content: left;
}

.custom-icon {
    height: 158px;
    background-color: #e7e8e8;
    margin-bottom: 10px;
    text-align: end;
}

div.px-5.bg-white.shadow.rounded.st1.custom-icon {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/Image/Asset47.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.st2 {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/Image/Asset46.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.st3 {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/Image/Asset45.png);
    background-size: 100%;
    background-repeat: no-repeat;
}



div.col-lg-6.col-md-6.col-12.mt-30 :hover {
    scale: 1.03;
}

.proicon {
    color: rgb(240, 33, 121);
    scale: 1.2;
}

a.tm-button.techbutton {
    margin-right: 60%;
    width: 35%;
}

a.tm-button.edubutton {
    margin-right: 80%;
    width: 20%;
}

h1.productlable {
    text-align: center;
    margin-top: 45%;
    width: 20%;
    margin-right: 40%;
    font-size: 80px;
    font-family: 'Diodrumen';
}

p.proship {
    text-align: center;
    margin: 4%;
    font-size: large;
}

div.ImgBanner {
    min-height: 355px;
    position: relative;
    z-index: 0;
}

.tm-padding-section1 {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: -5px;
    margin-top: -5%;
}

div.row.prolistitem {
    background-color: #ffffff;
    padding: 10%;
    justify-content: left;
    text-align: center;
    direction: ltr;
    margin-left: -30px;
    padding-left: 29%;
    padding-right: 28%;
}

div.row.prolistitem p {
    margin-top: -5%;
    font-size: large;
    font-weight: 900;
}

.notemasraf {
    padding-right: 20%;
    padding-left: 20%;
    background-color: white;
    font-size: larger;
    text-align: justify;
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: top;
    background-position-y: 1%;
}

.otherproduct {
    font-weight: bold;
    font-size: x-large;
    text-align: center;
    width: 50%;
    margin-right: 25%;
    background-color: white;
    padding-top: 5%;
    margin-bottom: 5%;
}

div.otherproduct h3 {
    font-size: 36px;
    margin-bottom: -5%;
}

div.tm-product.wow.fadeInUp {
    background-color: #e7e7e8;
    height: 110%;
}

.prolistitemspan {
    text-align: left;
    margin-top: -8%;
    font-size: large;
    font-weight: 600;
    margin-bottom: -10%;
    margin-left: 27%;
    direction: ltr;
}

div.tm-funfact-content h5 {
    font-weight: 900;
}

div.col-lg-6.slick-slide.slick-active img {
    width: 530px;
}

p.productpagep {
    text-align: justify;
}

section.prosweetssec {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Back-PastryAsset2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

div.tm-section.blogs-area.tm-padding-section2 {
    padding-top: 3%;
    padding-bottom: 25%;
    background-image: url(/images/bg/Back-PastryAsset2.jpg);
    margin-right: -1%;
    margin-left: -1%;
}

div.tm-section.about-us-area.tm-padding-section3.educationsection {
    padding-top: 10%;
    padding-bottom: 5%;
    margin-top: -15%;
}

div.tm-section.services-area.tm-padding-section5.productsec {
    margin-bottom: -2%;
}

div.row.edubg {
    margin-left: 0%;
    margin-right: 0%;
    background-size: 100%;
    background-repeat: no-repeat;
}

div.tm-education-content {
    margin-right: 15%;
    text-align: justify;
    margin-top: 11%;
    margin-left: 0%;
}

div.tm-section.about-us-area.tm-padding-section3.educationsection {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset51.png);
    background-size: 35%;
    background-repeat: no-repeat;
    background-color: #eff0f0;
    background-position-x: 10%;
}

div.tm-education-content p {

    line-height: 33.5px;
    font-size: larger;
    margin-top: 10%;
}

h5.product-details-sweets {
    text-align: left;
    font-size: 24px;
    padding-left: 3%;
}

i.fa.fa-chevron-circle-Right {
    color: #c5c5c8;
    float: right;
    scale: 2;
    padding-left: 5%;
    padding-top: 2%;
}

i.fa.fa-chevron-circle-left :hover {
    color: #6e6e6e;
}

img.wow.fadeInLeft-imagecreamfilling {
    margin-top: -30%;
}

#creamfilling6 {
    margin-top: -80%;
    margin-right: -1%;
}

#creamfilling13 {
    margin-top: -30%;
    margin-right: -32%;
}

#DeliCreampimg {
    margin-top: -30%;
    margin-right: -25%;
}

#Fondantpimg {
    margin-top: -30%;
    margin-right: 0%;
}

#ColdGlazepimg {
    margin-top: -30%;
    margin-right: 0%;
}

#fruitypastryfiilingimg {
    margin-top: -30%;
}

#coinchoco1img {
    margin-top: -90%;
    scale: 0.4;
    margin-right: -20%;
}

#cocoachipsi1img {
    scale: 0.3;
    margin-top: -100%;
    margin-right: -5%;
}

a.tm-product-imagelink img {
    scale: 1.4;
    margin-top: 25%;
    margin-bottom: 18%;
}

div.otherproduct h3 {
    margin-bottom: 5%;
}

div.tm-product.wow.fadeInUp.otherproductimg {
    background-color: #f8f8f8;
    height: 110%;
}

a.tm-product-imagelink {
    scale: 1.1;
}

a.tm-button.otherproductbtn {
    width: 100%;
    margin-top: 5%;
}

div.tm-section.blogs-area.tm-padding-section2 {
    background-size: contain;
    background-repeat: no-repeat;
}

div.row.edubg {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset111.png);
}

div.tm-education-image {
    scale: 88%;
    margin-top: 4%;
    margin-left: 5%;
}

#Socialp {
    text-align: center;
    font-size: 10px;
    margin-right: 15px;
}

#fruitfillingimg {
    margin-top: -20%;
    margin-right: -30%;
}

p.prolistitemp {
    margin-top: 5%;
    font-size: large;
    font-weight: 900;
    margin-bottom: -10%;
    float: left;
    margin-left: 10%;
}

#h2aboutuspg {
    font-size: 36px;
}

div.tm-about-content.aboutuspg {
    margin-bottom: 12%;
}

#coinchocoimg {
    margin-top: -20%;
    margin-bottom: -6%;
}

#Whippingimg {
    margin-top: -10%;
    scale: 0.7;
}

#compoundch1 {
    transform: rotate(0deg);
    position: relative;
    z-index: 4;
}

#compoundch2 {
    transform: rotate(-20deg);
    margin-top: -85%;
    position: relative;
    z-index: 3;
    margin-right: 5%;
}

#compoundch3 {
    transform: rotate(-40deg);
    margin-top: -110%;
    position: relative;
    z-index: 2;
    margin-right: 10%;
}

#compoundch4 {
    transform: rotate(-65deg);
    margin-top: -135%;
    position: relative;
    z-index: 1;
    margin-right: 22%;
}

div.tm-about-image.compoundchimg {
    margin-top: 15%;
    margin-bottom: -15%;
}

#creamBiscuitsimg {
    margin-top: -5%;
    scale: 1.2;
    margin-bottom: 20%;
}

#Hazelnutcocoaimg {
    margin-top: -5%;
    scale: 1.4;
    margin-bottom: 20%;
}

#cocoacoatingimg {
    margin-top: -5%;
    scale: 1.5;
}

#cocoadrageimg {
    margin-top: -5%;
    scale: 1.3;
}

#cocoachipsiimg {
    margin-top: -5%;
    scale: 0.9;
    margin-right: 10%;
}

#cakegelimg {
    margin-top: -5%;
    scale: 1;
}

#cocoapistachioimg {
    margin-top: -5%;
    scale: 1.6;
    margin-bottom: 35%;
}

div.tm-section.about-us-area.bg-white.tm-padding-section.aboutuspg {
    margin-top: 0px;
}

div.tm-section.about-us-area.bg-white.tm-padding-section.aboutuspg {
    background-image: url(/wp-content/themes/RoozbehChocolate/Assets/images/bg/bgn.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position-y: 15%;
    background-position-x: 5%;
}

div.tm-section.contact-us-area.tm-padding-section.bg-white.contactuspg {
    margin-top: 0px;
    padding-top: 10%;
}

div.tm-section.page-not-found-area.tm-padding-section.bg-white {
    margin-top: 12%;
}

#spongeimg {
    margin-top: -40%;
    scale: 0.6;
    margin-bottom: -20%
}

#muffinimg {
    margin-top: -40%;
    scale: 0.6;
    margin-bottom: -20%
}

#velvetimg {
    margin-top: -40%;
    scale: 0.6;
    margin-bottom: -20%;
}

#concentradeimg {
    margin-top: 25%;
    scale: 1;
    margin-right: 16%;
    margin-bottom: 20%;
    background-color: white;
}

div.tm-service-content {
    text-align: justify;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 4%;
    direction: ltr;
}

main.page-content {
    margin-bottom: 0%;
}

div.carousel-caption.d-block.d-md-block {
    position-area: center;
    margin-top: 5%;
    margin-right: 3%;
    text-align: left;
}

div.carousel-caption.d-block.d-md-block h5 {
    font-size: xx-large;
    color: #d31a68;
    font-family: 'Diodrumen';
}

div.carousel-caption.d-block.d-md-block p {
    font-size: xxx-large;
    font-family: 'Diodrumen';
    font-weight: 700;
    color: white;
    margin-top: -5%;
}

a.tm-button.sliderbtn {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: unset;
    font-size: inherit;
    text-align: center;
}

div.blog-slider-item {
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: 33%;
    padding: 1%;
    margin-top: 0%;
}

div.tm-blog-content {
    margin-right: 76%;
    margin-left: 2%;
}

.tm-section-title {
    margin-bottom: 55px;
    margin-top: 10%;
}

div#edusection.tm-section.about-us-area.tm-padding-section3.educationsection {
    margin-bottom: 0%;
}

div.footer {
    padding-top: 200px;
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
    background-position: top;
    background-size: 90%;
    background-repeat: no-repeat;
}

a#Langicon {
    color: #ee2c7b;
    font-weight: 900;
}

div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
    scale: 1.2;
}

svg.svg-inline--fa.fa-circle-chevron-right {
    scale: 2.5;
    float: right;
    color: #C9C9C9;
}

div.footer-copyrightsocial hr {
    width: 65%;
    margin-right: 15%;
}

#masrafnote {
    font-size: xx-large;
    font-family: 'Diodrumen';
}

#prolistcakegel,
#prolistbiscuit,
#prolistpista {
    margin-bottom: 10%;
}

#creamfillingpgimg {
    margin-top: 0;
}

#fruitfillingpgimg {
    margin-top: -10%;
}

#fruitypastryfiilingpgimg {
    margin-top: 0;
}

#delipgimg {
    margin-top: 0;
}

#coldglazepgimg {
    margin-top: 0;
}

#fondantpgimg {
    margin-top: 0;
}

#WhippingCreampgimg {
    margin-top: 0;
}

#spongepgimg {
    margin-top: 0;
}

#muffinpgimg {
    margin-top: 0;
}

#velvetpgimg {
    margin-top: 0;
}

#cakegelpgimg {
    margin-top: 0;
}

#concentradepgimg {
    margin-top: -5%;
}

#coinchocopgimg {
    margin-top: 0;
    margin-right: 12%;
}

#cocoacoatingpgimg {
    margin-top: 0;
    margin-bottom: 35%;
}

#Drageepgimg {
    margin-top: 0;
    margin-bottom: 35%;
}

#Chipsipgimg {
    margin-top: 0;
}

#chococoinsh2 {
    margin-right: -20%;
}

#compundchocoh2 {
    margin-right: -20%;
}

#cocoapistah2 {
    margin-right: -20%;
}

#cocoacoatingh2 {
    margin-right: -20%;
}

#drageeh2 {
    margin-right: -20%;
}

#chipsih2 {

    margin-right: -20%;
}

div.contactusmap {
    padding-top: 70px;
}

#contactuscadr {
    margin-top: -10%;
    position: relative;
    z-index: 0;
    width: 80%;
    text-align: -webkit-center;
}

#contactuscadrin {
    background-color: white;
    height: 350px;
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 100%;
}

#contactush1 {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#contactusul {
    list-style-type: none;
    text-align: justify;
    font-size: small;
}

div.tm-form-field input {
    width: 42%;
    padding-left: 2%;
}

div.tm-form-field textarea {
    width: 46%;
    height: 200px;
}

#contactusbg {
    height: 706px;
}

#contactdata {
    text-align: -webkit-left;
}

#messagecontact {
    text-align: -webkit-right;
    padding-right: 1%;
}

#msgsndbt {
    width: 8%;
    height: 30px;
    font-size: small;
    line-height: 0px;
    margin-right: 38%;
    background: white;
}

form#tm-contactform.tm-form {
    padding-bottom: 3%;
}

.iconcontactus {
    scale: 0.6;
    margin-left: -4%;
    margin-right: 2%;
}

div.footer-copyrightarea {
    background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetbg3.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.iconcontactustop {
    scale: 0.7;
}

div.notemasrafp ul {
    padding-right: 2%;
}

p.negahdari {
    margin-right: 0;
}

h3#gallerytitle {
    margin-top: -7%;
    margin-bottom: 3%;
    margin-right: 13%;
}

div.tm-service-content span {
    font-family: diodrumen;
}

svg.svg-inline--fa.fa-circle-chevron-right {
    margin-top: 2%;
    margin-left: 2%;
}

nav.tm-navigation {
    direction: ltr;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

ul.dropdown-menu.multi-level.show li a img {
    scale: 0.5;
    --bs-dropdown-min-width: 4rem;
}

#rulang {
    scale: 0.6;
}

#dLabel {
    margin-top: -35%;
}

#rulang,
#falang,
#enlang,
#arlang {
    scale: 0.6;
}

@media only screen and (min-width: 300px) and (max-width: 399px) {
    div.tm-service.text-center.wow.fadeInUp.otherproinpg {
        margin-left: -30%;
        margin-right: -30%;
    }

    #chipsih2RU {
        margin-top: -88%;
        font-size: 17px;
        margin-right: 32%;
        margin-left: -40%;
    }

    #drageeh2RU {
        margin-top: -83%;
        font-size: 16px;
        margin-right: 39%;
        margin-left: -40%;
    }

    #cocoacoatingh2RU {
        margin-top: -85%;
        font-size: 14px;
        margin-right: 46%;
        margin-left: -40%;
    }

    #cocoapistah2RU {
        margin-top: -83%;
        font-size: 15px;
        margin-right: 33%;
        margin-left: -40%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-top: -83%;
        font-size: 17px;
        margin-right: 32%;
        margin-left: -40%;
    }

    #BiscuitsCreamh2RU {
        margin-top: -92%;
        font-size: 19px;
        margin-right: 46%;
        margin-left: -40%;
    }

    #compundchocoh2RU {
        font-size: 16px;
        margin-top: -82%;
        margin-right: 40%;
        margin-left: -40%;
    }

    #concentradeimgRU {
        scale: 2.6;
        margin-top: 20%;
        margin-bottom: -6%;
    }

    #ConcentratedPasteh2RU {
        font-size: 18px;
        margin-top: -24%;
        margin-bottom: 75%;
        margin-right: 36%;
        margin-left: -50%;
    }

    #VelvetCakeMixh2RU {
        font-size: 18px;
        margin-top: -85%;
        margin-right: 40%;
        margin-left: -25%;
    }

    #MuffinCakeMixh2RU {
        font-size: 16px;
        margin-top: -84%;
        margin-right: 32%;
        margin-left: -30%;
    }

    #SpongeCakeMixh2RU {
        font-size: 16px;
        margin-top: -84%;
        margin-right: 34%;
        margin-left: -30%;
    }

    #ColdGlazeh2RU {
        font-size: 18px;
        margin-top: -82%;
        margin-right: 37%;
        margin-left: -30%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: -85%;
        margin-right: 67%;
        margin-left: -70%;
        font-size: 26px;
    }

    #FruityPastryFillingh2RU {
        font-size: 16px;
        margin-top: -82%;
        margin-right: 35%;
        margin-left: -15%;
    }

    #fruitfillingh2RU {
        font-size: 26px;
        margin-top: -92%;
        margin-right: 37%;
        margin-left: -25%;
    }

    .iconcontactus {
        scale: 0.4;
        margin-left: -8%;
        margin-right: -8%;
    }

    img#emailicon.iconcontactustop {
        margin-left: -5%;
    }

    #contactdata {
        text-align: -webkit-center;
        direction: ltr;
        margin-right: 8%;
    }

    div.tm-about-content.aboutuspg {
        margin-bottom: -30%;
    }

    div.tm-funfact.wow.fadeInUp.Hazelnutvarity {
        float: left;
        margin-left: -18%;
    }

    h1.productlable {
        text-align: center;
        margin-top: 45%;
        width: 20%;
        margin-right: 40%;
        font-size: 80px;
        font-family: 'Diodrumen';
        direction: ltr;
    }

    #ConcentratedPasteh2 {
        font-size: 21px;
        margin-top: -88%;
        margin-left: -66%;
        margin-right: 43%;
    }

    #concentradepgimg {
        margin-top: -42%;
        scale: 0.4;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: -25%;
    }

    #CakeGelh2 {
        font-size: 26px;
        margin-top: -88%;
        margin-left: -20%;
        margin-right: 74%;
    }

    #cakegelpgimg {
        margin-top: -15%;
        scale: 0.6;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: 15%;
    }

    #VelvetCakeMixh2 {
        font-size: 26px;
        margin-top: -88%;
        margin-left: -20%;
        margin-right: 42%;
    }

    #velvetpgimg {
        margin-top: -40%;
        scale: 0.4;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: 5%;
    }

    #MuffinCakeMixh2 {
        font-size: 26px;
        margin-top: -88%;
        margin-left: -20%;
        margin-right: 42%;
    }

    #muffinpgimg {
        margin-top: -40%;
        scale: 0.4;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: -17%;
    }

    #SpongeCakeMixh2 {
        font-size: 26px;
        margin-top: -88%;
        margin-left: -20%;
        margin-right: 38%;
    }

    #spongepgimg {
        margin-top: -30%;
        scale: 0.5;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: -10%;
    }

    #WhippingCreamh2 {
        font-size: 28px;
        margin-top: -92%;
        margin-left: -20%;
        margin-right: 36%;
    }

    #WhippingCreampgimg {
        margin-top: -12%;
        margin-right: -30%;
        margin-left: 35%;
        scale: 0.6;
        margin-bottom: 5%;
    }

    #fondanth2 {
        margin-top: -88%;
        margin-left: -20%;
        margin-right: 68%;
        font-size: 30px;
    }

    #fondantpgimg {
        margin-top: -12%;
        scale: 0.65;
        margin-left: 35%;
        margin-right: -30%;
        margin-bottom: 10%;
    }

    #ColdGlazeh2 {
        font-size: 30px;
        margin-top: -85%;
        margin-left: -20%;
        margin-right: 60%;
    }

    #coldglazepgimg {
        margin-top: -12%;
        scale: 0.65;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: 10%;
    }

    #ToffeeFillingCreamh2 {
        font-size: 25px;
        margin-top: -85%;
        margin-left: -20%;
        margin-right: 31%;
    }

    #delipgimg {
        margin-top: -12%;
        scale: 0.65;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: 10%;
    }

    #FruityPastryFillingh2 {
        font-size: 24px;
        margin-top: -86%;
        margin-left: -20%;
        margin-right: 34%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: -12%;
        scale: 0.65;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: 10%;
    }

    #fruitfillingh2 {
        margin-top: -95%;
        margin-left: -20%;
        margin-right: 54%;
        font-size: 30px;
    }

    #fruitfillingpgimg {
        margin-top: -20%;
        scale: 0.65;
        margin-right: -30%;
        margin-left: 30%;
        margin-bottom: 10%;
    }

    #creamfillingh2 {
        margin-top: -87%;
        margin-left: -20%;
        margin-right: 56%;
        font-size: 26px;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 0px;
        padding-right: 28%;
    }

    #Chipsipgimg {
        margin-top: -65%;
        scale: 0.5;
        margin-bottom: -30%;
        margin-right: -45%;
        margin-left: 25%;
    }

    #cocoadrageimg {
        margin-top: -30%;
        scale: 1;
        margin-bottom: -15%;
        margin-right: -40%;
    }

    #cocoacoatingimg {
        margin-top: -32%;
        scale: 1;
        margin-bottom: -5%;
        margin-right: -32%;
    }

    #cocoapistachioimg {
        margin-top: -65%;
        scale: 1;
        margin-bottom: 30%;
        margin-right: -40%;
    }

    #HazelnutCocoaCreamlable {
        font-size: 20px;
        margin-top: -83%;
        margin-right: 38%;
        margin-left: -20%;
    }

    #Hazelnutcocoaimg {
        margin-top: -65%;
        scale: 1;
        margin-bottom: 29%;
        margin-right: -40%;
    }

    img.productimginpage {
        scale: 90%;
        margin-top: 40%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 350px;
        line-height: normal;
    }

    div.tm-service.text-center.wow.fadeInUp.otherproinpg {
        margin-left: -30%;
        margin-right: -30%;
    }

    div.row.propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 60%;
        background-position-y: 10%;
        position: relative;
        background-position-x: 15%;
    }

    #prolistbiscuit {
        margin-top: -85%;
    }

    #BiscuitsCreamh2 {
        margin-top: -95%;
        margin-right: 48%;
        margin-left: -30%;
        font-size: 26px;
    }

    #creamBiscuitsimg {
        margin-top: -65%;
        margin-bottom: 37%;
        margin-right: -35%;
        scale: 1;
    }

    p.pweight {
        margin-left: 15%;
    }

    p.ppack {
        margin-left: 11%;
    }

    div.prolistitemspan ul li span {
        display: flex;
    }

    #Compoundchocolateimg {
        margin-right: -20%;
        margin-left: 40%;
        margin-top: -20%;
        margin-bottom: -5%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: 0%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 5%;
    }

    h5.product-details-sweets a {
        font-size: 12px;
    }

    div.notemasrafp ul li {
        margin-left: -6%;
    }

    div.tm-testimonial {
        direction: ltr;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: -102%;
        font-size: smaller;
    }

    div.tm-funfact-content h5 {
        font-size: 10px;
        text-align: left;
    }

    .header-mobilemenu .mean-container .mean-nav>ul li a.mean-expand {
        padding: 3px 6px !important;
        height: 28px;
        line-height: 30px;
        text-align: center;
    }

    .header-mobilemenu .mean-container .mean-nav>ul li a {
        padding: 7px 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: left;
    }

    .header-mobilemenu .mean-container .mean-nav>ul li a.mean-expand {
        left: 85%;
    }

    li.tm-navigation-dropdown a {
        text-align: left;
    }

    .header-icons ul {
        padding-right: 15%;
        margin-bottom: 30px;
        font-size: 0;
    }

    a.meanmenu-reveal {
        margin-left: 94%;
    }

    input#srchbox {
        height: 20%;
        margin-top: -5%;
        font-size: smaller;
        border: ridge;
        border-color: snow;
    }

    div.tm-about-content h3 {
        margin-right: 81%;
        margin-top: -25%;
        margin-bottom: -5%;
        margin-left: -5%;
    }

    div.footer-copyrightsocial {
        margin-top: 20%;
    }

    ul.footeraddress {
        margin-top: -60%;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: 50%;
        width: 100%;
    }

    .widget-quicklinks ul li a {
        font-size: larger;
    }

    div.single-widget.widget-quicklinks {
        margin-top: 170%;
    }

    #addressfield {
        margin-left: -10%;
    }

    #emailfield {
        margin-left: -14%;
    }

    #tellfield {
        margin-left: -10%;
    }

    ul.footeraddress {
        list-style-type: none;
        text-align: left;
        direction: ltr;
        margin-left: 9%;
        margin-right: 13%;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 5px;
    }

    #msgsndbt {
        width: 25%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 43%;
        background: white;
        text-align: center;
        margin-right: 45%;
        margin-top: -10%;
    }

    div.tm-form-field textarea {
        width: 95%;
        height: 100px;
        margin-right: 11%;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 80%;
        padding-left: 2%;
    }

    div.tm-form-field {
        width: 42vh;
    }

    div.col-lg-12 h5 {
        font-size: x-small;
        margin-left: 15%;
        margin-right: 15%;
        text-align: justify;
        direction: ltr;
    }

    h2#contacth2 {
        font-size: x-large;
        margin-top: -15%;
        font-family: 'lalezar';
    }

    #contactuscadrin {
        background-color: white;
        height: 470px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: x-small;
        direction: ltr;
        margin-left: -15%;
    }

    ul#contactusul p span {
        display: flex;
    }

    ul#contactusul li p span {
        display: flex;
    }

    h3#gallerytitle {
        margin-top: -45%;
        margin-bottom: 0%;
        margin-right: 7%;
        font-size: 10px;
    }

    #h1aboutuspg {
        padding-top: 15%;
        margin-bottom: -13%;
        margin-right: 30%;
        font-size: x-large;
        margin-right: 40%;
    }

    div.tm-about-content.aboutuspg p {
        text-align: justify;
        margin-top: 0%;
        font-size: 11px;
        margin-left: 0%;
        position: relative;
        z-index: 1;
    }

    div.row.maincadr {
        display: unset;
    }

    #chipsih2 {
        margin-right: 36%;
        font-size: 17px;
        margin-left: -20%;
        margin-top: -88%;
    }

    #drageeh2 {
        margin-right: 30%;
        font-size: 17px;
        margin-left: -20%;
        margin-top: -84%;
    }

    #cocoacoatingh2 {
        margin-right: 44%;
        font-size: 14px;
        margin-left: -20%;
        margin-top: -85%;
    }

    #cocoapistah2 {
        margin-right: 31%;
        font-size: 14px;
        margin-top: -82%;
        margin-left: -20%;
    }

    #compundchocoh2 {
        margin-right: 40%;
        font-size: 20px;
        margin-left: -20%;
        margin-top: -86%;
    }

    #chococoinsh2 {
        margin-right: 31%;
        font-size: 18px;
        margin-top: -85%;
        margin-left: -8%;
        text-align: left;
    }

    #coinchocopgimg {
        margin-top: -25%;
        margin-right: -15%;
        margin-left: 45%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 0%;
    }

    #concentradeimg {
        margin-top: 0%;
        scale: 1.3;
        margin-right: 0%;
        margin-bottom: 20%;
        background-color: white;
    }

    #cakegelimg {
        margin-top: -50%;
        scale: 1;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 1;
        margin-bottom: 0%;
    }

    #muffinimg {
        margin-top: -40%;
        scale: 1;
        margin-bottom: 10%;
    }

    #spongeimg {
        margin-top: -40%;
        scale: 1;
        margin-bottom: 10%;
    }

    #Whippingimg {
        margin-top: -30%;
        scale: 1;
        margin-right: 10%;
        margin-bottom: 15%;
    }

    #Fondantpimg {
        margin-top: -50%;
        margin-right: 0%;
    }

    #ColdGlazepimg {
        margin-top: -50%;
        margin-right: 0%;
    }

    #DeliCreampimg {
        margin-top: -50%;
        margin-right: 0%;
    }

    #fruitypastryfiilingimg {
        margin-top: -50%;
    }

    #fruitfillingimg {
        margin-top: -40%;
        margin-right: 0%;
    }

    div.otherproduct h3 {
        font-size: 18px;
        background: none;
        margin-bottom: -30%;
        margin-top: 15%;
    }

    div.notemasraf {
        background: none;
        direction: ltr;
        text-align: justify;
        margin-left: -12%;
        margin-right: -12%;
        font-size: 12px;
        margin-top: 10%;
    }

    #masrafnote {
        font-size: 12px;
        font-family: 'diodrumen';
        font-weight: 900;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        margin-top: 70%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-funfact.wow.fadeInUp {
        float: left;
        margin-left: -40%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -80%;
        font-size: 10px;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 2%;
        direction: ltr;
    }

    .tm-about-content h2 {
        margin-top: -40%;
        margin-bottom: 10px;
        color: #000000;
        margin-right: 0%;
    }

    #creamfillingpgimg {
        margin-top: -22%;
        margin-right: 0%;
        margin-left: 40%;
        margin-bottom: 15%;
    }

    div.footer {
        padding-top: 25px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    p.negahdari {
        margin-right: 0;
    }

    #LaptopSlider {
        display: none;
    }

    img#MobileSlider.w-100 {
        margin-bottom: -13%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -22%;
        margin-left: -31%;
        width: 65%;
        margin-bottom: -16%;
        margin-top: 10%;
        scale: 2;
        line-height: 18px;
    }

    div.carousel-caption.d-block.d-md-block {
        position: relative;
        margin-bottom: -6%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: 12px;
        margin-top: -2%;
        margin-left: 67%;
        margin-right: -20%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        display: none;
    }

    div.tm-blog-content h3 {
        font-size: 18px;
        margin-right: 22%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    .tm-blog-content p {
        margin-bottom: -17px;
        color: #fff;
        letter-spacing: -0.5px;
        margin-right: 0%;
        font-size: 14px;
        text-align: justify;
        margin-left: 70%;
    }

    .footer-copyrightsocial ul {
        margin-right: 2%;
        margin-left: 0%;
    }

    div.single-widget.widget-quicklinks ul {
        padding-left: 0;
        direction: ltr;
    }

    .footer-copyrightsocial ul li:not(:last-child) {
        margin-left: -13px;
    }

    .footerlink {
        font-size: x-small;
        margin-right: 9%;
        margin-bottom: 10%;
    }

    h5.widget-title {
        font-size: small;
    }

    ul.footeraddress li p {
        font-size: 8px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        display: unset;
    }

    div.tm-blog-content {
        margin-top: 9%;
        margin-right: 25%;
        margin-left: -100%;
    }

    div.tm-education-content h3 {
        font-size: 18px;
        margin-right: 55%;
        margin-top: 14%;
        margin-bottom: -5%;
        margin-left: -5%;
    }

    div.tm-service-content span {
        font-size: 12px;
    }

    .header-icons ul li {
        list-style: none;
        display: table-cell;
        padding: 0 3px;
        font-size: 14px;
        position: relative;
    }

    div.tm-education-content p {
        line-height: 19.5px;
        font-size: 10px;
        margin-right: -3%;
        margin-left: 0%;
        direction: ltr;
    }

    div.header-logo {
        margin-right: -8%;
        margin-left: -8%;
    }

    div.header-icons {
        margin-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -2%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: x-small;
        direction: ltr;
        margin-left: 2%;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 50%;
        font-size: 25px;
    }

    p.proship {
        font-size: small;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 11px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 30px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: x-small;
        text-align: justify;
        direction: ltr;
        margin-left: 16%;
        margin-right: 17%;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 50%;
        background-position-x: 20%;
    }

    div.tm-about-content {
        margin-top: 10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -20%;
        margin-right: 35%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: 200%;
        background-repeat: no-repeat;
        height: 310px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        margin-top: 5%;
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.5;
        margin-right: -11%;
        margin-top: -7%;
        width: 40%;
        text-align: center;
        line-height: 40px;
        font-size: 20px;
    }

    div.tm-about-image {
        margin-top: 25%;
        scale: 0.8;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 10%;
        margin-left: 10%;
        margin-top: 15%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 90%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 0%;
        scale: 90%;
        margin-top: 10%;
    }

    #logofooter {
        scale: 0.9;
        margin-right: -3%;
        margin-top: -180%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -15%;
        margin-right: 4%;
        margin-bottom: 4%;
    }

    #location {
        margin-right: -3%;
        margin-bottom: 9%;
        margin-top: 5%;
        scale: 0.8;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 10px;
        margin-right: -8%;
        margin-left: 64%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 63%;
        font-size: 10px;
        height: 22px;
        line-height: inherit;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }

}

@media only screen and (min-width: 400px) and (max-width: 499px) {
    ul#contactusulRU p span {
        display: flex;
    }

    #callspanRU {
        display: flex;
    }

    #emailspanRU {
        display: flex;
    }

    #addressspanRU {
        display: flex;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: x-small;
        direction: ltr;
        margin-left: -20%;
        margin-right: -5%;
    }

    #gallerytitleRU {
        direction: ltr;
        margin-left: 15%;
        margin-top: -36%;
        font-size: 12px;
    }

    #chipsih2RU {
        text-align: left;
        margin-left: -8%;
        font-size: 26px;
        margin-right: 35%;
        margin-top: -68%;
    }

    #Chipsipgimg {
        margin-top: -45%;
        margin-right: -35%;
        margin-left: 35%;
        margin-bottom: -70%;
    }

    #drageeh2RU {
        text-align: left;
        margin-left: -8%;
        font-size: 28px;
        margin-right: 40%;
        margin-top: -67%;
    }

    #Drageepgimg {
        margin-top: -25%;
        margin-bottom: -20%;
        margin-right: -30%;
        margin-left: 35%;
    }

    #cocoacoatingh2RU {
        text-align: left;
        margin-left: -8%;
        font-size: 21px;
        margin-top: -65%;
    }

    #cocoacoatingpgimg {
        margin-top: -20%;
        margin-bottom: -15%;
        scale: 0.7;
        margin-right: -20%;
        margin-left: 25%;
    }

    #cocoapistah2RU {
        text-align: left;
        margin-left: -8%;
        margin-right: 10%;
        font-size: 24px;
        margin-top: -75%;
    }

    #cocoapistachioimg {
        margin-top: -65%;
        scale: 1.3;
        margin-bottom: 15%;
        margin-right: -40%;
    }

    #HazelnutCocoaCreamlable {
        text-align: left;
        margin-left: -8%;
        margin-right: -20%;
        font-size: 26px;
        margin-top: -65%;
    }

    #Hazelnutcocoaimg {
        margin-top: -60%;
        scale: 1.3;
        margin-bottom: 7%;
        margin-right: -40%;
    }

    #HazelnutCocoaCreamlableRU {
        text-align: left;
        margin-left: -8%;
        margin-right: 22%;
        font-size: 19px;
        margin-top: -65%;
    }

    #Hazelnutcocoaimg {
        margin-top: -60%;
        scale: 1.3;
        margin-bottom: 5%;
        margin-right: -40%;
    }

    #BiscuitsCreamh2 {
        text-align: left;
        margin-top: -65%;
        margin-left: -7%;
        margin-right: -20%;
    }

    #BiscuitsCreamh2RU {
        text-align: left;
        margin-left: -8%;
        font-size: 23px;
        margin-right: -20%;
        margin-top: -65%;
    }

    #creamBiscuitsimg {
        margin-top: -70%;
        scale: 1.2;
        margin-bottom: 10%;
        margin-right: -35%;
    }

    #compundchocoh2RU {
        margin-left: -8%;
        margin-right: 32%;
        text-align: left;
        font-size: 23px;
    }

    #Compoundchocolateimg {
        margin-top: -25%;
        margin-left: 35%;
        margin-right: -30%;
        margin-bottom: -45%;
    }

    #ConcentratedPasteh2 {
        text-align: left;
        margin-right: -20%;
        margin-left: -8%;
        font-size: 26px;
        margin-top: -58%;
    }

    #CakeGelh2 {
        text-align: left;
        margin-left: -8%;
        margin-top: -60%;
        margin-right: -10%;
    }

    #VelvetCakeMixh2 {
        margin-top: -54%;
        margin-left: -10%;
        margin-right: 48%;
    }

    #MuffinCakeMixh2 {
        margin-top: -58%;
        margin-left: -10%;
        margin-right: 48%;
    }

    div.row.prolistitem {
        direction: ltr;
        text-align: left;
        margin-right: 25%;
        margin-left: -15%;
    }

    #SpongeCakeMixh2 {
        margin-right: 45%;
        margin-top: -63%;
    }

    div.tm-service.text-center.wow.fadeInUp.otherproinpg {
        margin-left: -30%;
        margin-right: -30%;
    }

    #FruityPastryFillingh2 {
        text-align: left;
        margin-left: -6%;
        font-size: 26px;
        margin-right: -10%;
        margin-top: -60%;
    }

    #fruitfillingh2 {
        margin-top: -60%;
        margin-left: -10%;
        margin-right: 63%;
    }

    #creamfillingh2 {
        margin-top: -55%;
        margin-bottom: 10px;
        color: #000000;
        margin-right: 40%;
        margin-left: -6%;
        font-size: 26px;
        text-align: left;
    }

    div.row.propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 60%;
        background-position-y: 15%;
        position: relative;
        background-position-x: 15%;
    }

    #concentradeimgRU {
        margin-top: -25%;
        margin-bottom: 0%;
        scale: 1.5;
        margin-right: -35%;
    }

    #VelvetCakeMixh2RU {
        text-align: left;
        margin-left: -7%;
        margin-top: -66%;
    }

    #MuffinCakeMixh2RU {
        margin-top: -65%;
        text-align: left;
        margin-left: -10%;
        font-size: 22px;
    }

    #SpongeCakeMixh2RU {
        margin-top: -70%;
        text-align: left;
        margin-left: -6%;
        margin-right: 35%;
        font-size: 26px;
    }

    #WhippingCreamh2 {
        text-align: left;
        margin-left: -8%;
        margin-top: -55%;
        margin-right: -10%;
    }

    #ColdGlazeh2 {
        margin-right: 70%;
        margin-top: -60%;
    }

    #ToffeeFillingCreamh2 {
        text-align: left;
        margin-left: -8%;
        margin-right: 20%;
        margin-top: -58%;
        font-size: 24px;
    }

    #fondanth2 {
        margin-left: -10%;
        margin-right: 76%;
        margin-top: -60%;
    }

    #ColdGlazeh2RU {
        text-align: left;
        margin-left: -6%;
        margin-top: -68%;
        font-size: 24px;
        margin-right: 30%;
    }

    #ToffeeFillingCreamh2RU {
        margin-right: 65%;
        margin-top: -60%;
        text-align: left;
        margin-left: -8%;
    }

    #FruityPastryFillingh2RU {
        margin-top: -67%;
        margin-left: -8%;
        text-align: left;
        margin-right: 35%;
        font-size: 26px;
    }

    #fruitfillingh2RU {
        margin-top: -60%;
        margin-right: 45%;
        font-size: 26px;
    }

    div.notemasraf {
        direction: ltr;
        margin-left: -15%;
        margin-right: -15%;
    }

    div.notemasrafp ul {
        margin-left: -5%;
    }

    .tm-testimonial {
        direction: ltr;
    }

    #messagecontact {
        text-align: -webkit-right;
        padding-right: 11%;
    }

    #contactdata {
        text-align: -webkit-left;
        margin-right: 10%;
        direction: ltr;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -10%;
    }

    #emailicon {
        margin-left: -3%;
    }

    div.tm-education-content h3 {
        margin-right: 63%;
        margin-bottom: -8%;
    }

    .single-widget ul {
        font-size: smaller;
        direction: ltr;
        margin-left: 35%;
        margin-right: -20%;
        padding-left: 29%;
    }

    #emailfield {
        margin-left: -2%;
    }

    .header-mobilemenu .mean-container .mean-nav>ul li a.mean-expand {
        padding: 3px 6px !important;
        height: 28px;
        line-height: 30px;
        text-align: center;
    }

    .header-mobilemenu .mean-container .mean-nav>ul li a {
        padding: 7px 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: left;
    }

    .header-mobilemenu .mean-container .mean-nav>ul li a.mean-expand {
        left: 85%;
    }

    li.tm-navigation-dropdown a {
        text-align: left;
    }

    .header-icons ul {
        padding-right: 0%;
        margin-bottom: 30px;
        font-size: 0;
    }

    a.meanmenu-reveal {
        margin-left: 94%;
    }

    input#srchbox {
        width: 100px;
        height: 26px;
        border: ridge;
        margin-top: -5%;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: -35px;
    }

    #msgsndbt {
        width: 22%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 43%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 93%;
        height: 100px;
        margin-right: 6%;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 80%;
        padding-left: 2%;
    }

    div.tm-form-field {
        width: 48vh;
    }

    div.col-lg-12 h5 {
        font-size: x-small;
        margin-left: 15%;
        margin-right: 15%;
    }

    h2#contacth2 {
        font-size: large;
        margin-top: -15%;
    }

    #contactuscadrin {
        background-color: white;
        height: 470px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: x-small;
        direction: ltr;
        margin-left: -10%;
    }

    ul#contactusul p span {
        display: flex;
    }

    ul#contactusul li p span {
        display: flex;
    }

    h3#gallerytitle {
        margin-top: -30%;
        margin-bottom: 3%;
        margin-right: 20%;
        font-size: small;
    }

    #h1aboutuspg {
        padding-top: 15%;
        margin-bottom: -13%;
        margin-right: 30%;
        font-size: x-large;
        margin-right: 40%;
    }

    div.tm-about-content.aboutuspg p {
        text-align: justify;
        margin-top: 0%;
        font-size: 11px;
        margin-left: 0%;
        position: relative;
        z-index: 1;
    }

    div.row.maincadr {
        display: unset;
    }

    #chipsih2 {
        margin-right: 30%;
        font-size: 32px;
        margin-left: -8%;
        text-align: left;
        margin-top: -69%;
    }

    #drageeh2 {
        margin-right: 30%;
        font-size: 32px;
        margin-left: -8%;
        text-align: left;
        margin-top: -69%;
    }

    #cocoacoatingh2 {
        margin-right: 55%;
        font-size: 23px;
        text-align: left;
        margin-left: -8%;
        margin-top: -70%;
    }

    #cocoapistah2 {
        margin-left: -8%;
        font-size: 22px;
        text-align: left;
        margin-right: 40%;
    }

    #compundchocoh2 {
        margin-right: 0%;
        font-size: 20px;
        text-align: left;
        margin-left: -8%;
        margin-top: -64%;
    }

    #chococoinsh2 {
        font-size: 20px;
        margin-left: -8%;
        margin-right: 22%;
        margin-bottom: 35%;
        margin-top: -50%;
        text-align: left;
    }

    #coinchocopgimg {
        margin-top: -100px;
        margin-right: -20%;
        margin-left: 30%;
        margin-bottom: -68%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2%;
        text-align: left;
        margin-right: -250%;
    }

    #concentradeimg {
        margin-top: -50%;
        scale: 0.8;
        margin-right: -30%;
        margin-bottom: -20%;
        background-color: unset;
    }

    #cakegelimg {
        margin-top: -55%;
        scale: 1;
        margin-right: -35%;
        margin-bottom: -20%;
    }

    #velvetimg {
        margin-top: -65%;
        scale: 0.7;
        margin-bottom: -40%;
        margin-right: -35%;
    }

    #muffinimg {
        margin-top: -65%;
        scale: 0.7;
        margin-bottom: -50%;
        margin-right: -35%;
    }

    #spongeimg {
        margin-top: -55%;
        scale: 0.9;
        margin-bottom: -40%;
        margin-right: -40%;
    }

    #Whippingimg {
        margin-top: -30%;
        scale: 0.9;
        margin-right: -20%;
        margin-bottom: -20%;
    }

    #Fondantpimg {
        margin-top: -55%;
        margin-right: -35%;
        margin-bottom: -20%;
    }

    #ColdGlazepimg {
        margin-top: -55%;
        margin-right: -35%;
        margin-bottom: -20%;
    }

    #DeliCreampimg {
        margin-top: -55%;
        margin-right: -30%;
        margin-bottom: -20%;
    }

    #fruitypastryfiilingimg {
        margin-top: -55%;
        margin-right: -35%;
        margin-bottom: -20%;
    }

    #fruitfillingimg {
        margin-top: -45%;
        margin-right: -35%;
        margin-bottom: -20%;
    }

    div.otherproduct h3 {
        font-size: 24px;
        background: unset;
    }

    div.notemasraf {
        background: none;
    }

    #masrafnote {
        font-size: x-large;
        font-family: lalezar;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        margin-top: 60%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-funfact.wow.fadeInUp {
        float: left;
        margin-left: -30%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -55%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 5%;
        direction: ltr;
    }

    .tm-about-content h2 {
        margin-top: -70%;
        margin-bottom: 10px;
        color: #000000;
        margin-right: 55%;
        margin-left: -18%;
        font-size: 30px;
    }

    #creamfillingpgimg {
        margin-top: -25%;
        margin-right: 0%;
        margin-left: 25%;
        margin-bottom: -40%;
    }

    div.footer {
        padding-top: 25px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    p.negahdari {
        margin-right: 0;
    }

    #footersec2 {
        padding-bottom: 30px;
        padding-top: 10%;
    }

    .footerlink {
        font-size: medium;
        margin-left: -10%;
        padding: 0;
        margin-top: 35%;
        margin-right: 9%;
    }

    div.footer {
        padding-top: 29px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        display: unset;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -37%;
    }

    img#MobileSlider.w-100 {
        margin-bottom: -13%;
    }

    #LaptopSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 25px;
    }

    div.footer-copyrightsocial {
        margin-top: 10%;
    }

    ul.footeraddress {
        font-size: x-small;
        direction: ltr;
        margin-top: -50%;
        text-align: left;
        margin-right: 10%;
        margin-left: -5%;
    }

    .widget-quicklinks ul li a {
        position: relative;
    }

    div.tm-buttongroup.sliderbtn {
        width: 100%;
        margin-bottom: -6%;
        margin-top: 6%;
        scale: 1.5;
        line-height: 18px;
    }

    div.carousel-caption.d-block.d-md-block {
        position: relative;
        margin-bottom: -6%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: 14px;
        margin-top: -2%;
        margin-left: 73%;
        margin-right: -20%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        display: none;
    }

    div.single-widget.widget-quicklinks ul li {
        font-size: smaller;
    }

    div.tm-about-content h3 {
        margin-top: -25%;
        direction: ltr;
    }

    div.tm-blog-content h3 {
        margin-right: 62%;
        margin-top: 25%;
        padding-top: 5%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 13%;
        margin-left: 0%;
        margin-top: -24%;
    }

    div.tm-service-content span {
        font-size: small;
    }

    div.tm-education-content p {
        font-size: larger;
        line-height: 20px;
        direction: ltr;
        margin-right: 5%;
        margin-left: 5%;
    }

    div.header-logo {
        margin-left: -5%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 0.7;
        margin-left: -20%;
        margin-top: 3%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: 0%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0%;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: -10px;
        font-size: 12px;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 0%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 26px;
        margin-bottom: 10%;
        font-weight: 900;
    }

    p.proship {
        font-size: small;
        text-align: justify;
        direction: ltr;
        margin-left: 2%;
        margin-right: 2%;
    }

    h5.product-details-sweets {
        font-size: 14px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 30px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -40%;
        font-size: smaller;
        text-align: justify;
        margin-right: 17%;
        margin-left: 16%;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 50%;
        margin-top: 15%;
        background-position-x: 20%;
    }

    div.tm-about-content {
        margin-top: 30%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -10%;
        margin-right: 35%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: 187%;
        background-repeat: no-repeat;
        height: 424px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        margin-top: 5%;
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.6;
        margin-right: -6%;
        margin-top: -8%;
        width: 30%;
        text-align: center;
        font-size: 20px;
    }

    div.tm-about-image {
        margin-bottom: -20%;
        margin-top: 25%;
        scale: 0.8;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 4%;
        margin-left: 1%;
        margin-top: 15%;
        font-size: smaller;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 90%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 0%;
        scale: 92%;
        margin-top: 10%;
        margin-right: 5%;
        margin-left: 2%;
    }

    #logofooter {
        scale: 0.8;
        margin-right: -5%;
        margin-top: -155%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -15%;
        margin-right: 6%;
        margin-bottom: 4%;
        font-size: small;
    }

    #location {
        margin-right: 5%;
        margin-bottom: 9%;
        margin-top: 5%;
        scale: 1.1;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 13px;
        padding-right: 0%;
        padding-left: 10%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 36px;
        line-height: 36px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        line-height: 31px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 500px) and (max-width: 599px) {
    p.negahdari {
        margin-right: 0;
    }

    .footerlink {
        font-size: medium;
        margin-left: 0%;
        padding: 0;
        margin-top: -15%;
    }

    div.footer {
        padding-top: 32px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
    }

    .tm-section-title {
        margin-bottom: 55px;
        margin-top: 20%;
    }

    .header-icons ul {
        padding-right: 0;
        margin-bottom: 20px;
        font-size: 0;
        margin-left: -30%;
        margin-top: 10%;
    }

    #MobileSlider {
        display: none;
    }

    .widget-quicklinks ul li a {
        position: relative;
        padding-right: 0px;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 25px;
    }

    ul.footeraddress {
        font-size: x-small;
        margin-top: 10%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 0%;
        margin-right: 0%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: medium;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: small;
    }

    div.single-widget.widget-quicklinks ul li {
        font-size: x-small;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content h3 {
        margin-right: 58%;
        margin-top: -17%;
        font-size: large;
        padding-top: 2%;
    }

    div.tm-blog-content {
        margin-right: 0%;
        margin-top: 15%;
    }

    div.tm-service-content span {
        font-size: small;
    }

    div.tm-education-content p {
        line-height: 26.5px;
        font-size: small;
    }

    div.header-logo {
        margin-right: -20%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 0.7;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -12%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: -15%;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: inherit;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 25%;
        font-size: 50px;
    }

    p.proship {
        font-size: small;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 30px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -30%;
        font-size: smaller;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 30%;
        margin-top: 15%;
        background-position-x: 20%;
    }

    div.tm-about-content {
        margin-top: 14%;
        padding: 0;
        font-size: small;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -5%;
        margin-right: 52%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: 129%;
        background-repeat: no-repeat;
        height: 320px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        margin-top: 0%;
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 80%;
        margin-top: -7%;
        width: 24%;
        font-size: inherit;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        margin-top: -5%;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 10%;
        margin-left: 10%;
        margin-top: 15%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 90%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 20%;
        scale: 85%;
        margin-top: 0%;
    }

    #logofooter {
        scale: 0.4;
        margin-right: -5%;
        margin-top: -25%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -15%;
        margin-right: 7%;
        margin-bottom: 4%;
    }

    #location {
        margin-right: 5%;
        margin-bottom: 9%;
        margin-top: 5%;
        scale: 1.1;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 10px;
        padding-right: 58%;
        padding-left: 0%;
        padding-bottom: 6%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 52%;
        font-size: 14px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 600px) and (max-width: 699px) {
    p.negahdari {
        margin-right: 0;
    }

    #MobileSlider {
        display: none;
    }

    .widget-quicklinks ul li a {
        position: relative;
        padding-right: 13px;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 50px;
    }

    ul.footeraddress {
        font-size: smaller;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 0%;
        margin-right: 0%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: medium;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: medium;
    }

    div.tm-section-title.text-center {
        margin-top: 5%;
    }

    div.single-widget.widget-quicklinks ul li {
        font-size: small;
    }

    div.tm-blog-content h3 {
        margin-right: 50%;
        margin-top: -20%;
        padding-top: 1%;
        font-size: large;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 2%;
        margin-top: 12%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        padding-top: 10%;
        padding-bottom: 5%;
        margin-top: -29%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: -30%;
        background-repeat: no-repeat;
        background-position: right;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 0%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: larger;
    }

    div.header-logo {
        margin-right: 0%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 0.7;
        margin-top: 3%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -5%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: small;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 25%;
        font-size: 50px;
    }

    p.proship {
        font-size: small;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -15px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 30px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 30%;
        margin-top: 15%;
        background-position-x: 20%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0;
        font-size: larger;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -5%;
        margin-right: 46%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 412px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        margin-top: 0%;
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.6;
        margin-right: 82%;
        margin-top: -9%;
        width: 23%;
        font-size: medium;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        margin-top: -10%;
        scale: 0.9;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 5%;
        margin-left: 5%;
        margin-top: 15%;
        font-size: smaller;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 90%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 15%;
        scale: 90%;
        margin-top: 0%;
    }

    #logofooter {
        scale: 0.4;
        margin-right: -5%;
        margin-top: -25%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -15%;
        margin-right: 7%;
        margin-bottom: 4%;
    }

    #location {
        margin-right: 20%;
        margin-bottom: 9%;
        margin-top: 5%;
        scale: 1.3;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 11px;
        padding-right: 50%;
        padding-left: 0%;
        padding-bottom: 2%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 60%;
        font-size: 17px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 700px) and (max-width: 767px) {
    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 10%;
        direction: ltr;
    }

    .tm-about-content h2 {
        margin-top: -40%;
        margin-bottom: 10px;
        color: #000000;
    }

    #creamfillingpgimg {
        margin-top: -15%;
        scale: 0.5;
        margin-right: -15%;
        margin-left: 20%;
    }

    p.negahdari {
        margin-right: 0;
    }

    div.tm-blog-content h3 {
        margin-top: -22%;
        margin-right: 45%;
        padding-top: 2%;
    }

    #MobileSlider {
        display: none;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 120%;
        width: 100%;
    }

    div.single-widget.widget-quicklinks ul li {
        font-size: x-small;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 2%;
        margin-top: 12%;
    }

    div.tm-about-image {
        margin-top: -14%;
        scale: 0.8;
    }

    div.tm-section-title.text-center {
        margin-top: 5%;
    }

    .widget-quicklinks ul li a {
        position: relative;
        padding-right: 13px;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 50px;
    }

    ul.footeraddress {
        font-size: small;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 0%;
        margin-right: 0%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: medium;
        margin-bottom: 10%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: -30%;
        background-repeat: no-repeat;
        background-position: right;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 15%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        padding-right: 10%;
        padding-left: 10%;
        line-height: 28.5px;
        font-size: small;
    }

    div.header-logo {
        margin-right: -5%;
        scale: 0.4;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -3%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: smaller;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 25%;
        font-size: 50px;
    }

    p.proship {
        font-size: small;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 30px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 10%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 0%;
        margin-right: 0%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-small;
        margin-top: -15%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-small;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-size: 28%;
        background-position-x: 20%;
        margin-top: 15%;
    }

    div.tm-about-content {
        margin-top: 16%;
        padding: 0;
        font-size: larger;
        margin-right: 10%;
        margin-left: 10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -3%;
        margin-right: 51%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: 101%;
        background-repeat: no-repeat;
        height: 363px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        margin-top: 0%;
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.5;
        margin-right: 75%;
        margin-top: -10%;
        width: 33%;
    }

    div.tm-about-image {
        margin-bottom: 13%
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 0%;
        margin-left: 0%;
        margin-top: 0%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 50%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 20%;
        scale: 80%;
        margin-top: -3%;
    }

    #logofooter {
        scale: 0.4;
        margin-right: -50%;
        margin-top: -25%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -50%;
        margin-right: 0%;
        margin-bottom: 4%;
    }

    #location {
        margin-right: 20%;
        margin-bottom: 9%;
        margin-top: -6%;
        scale: 1.3;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 12px;
        padding-right: 42%;
        padding-left: 0%;
        margin-right: 5%;
        margin-left: -1%;
        padding-bottom: 1%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 55px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 53%;
        font-size: 17px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 799px) {
    p.negahdari {
        margin-right: 0;
    }

    div.tm-blog-content h3 {
        margin-top: -29%;
        margin-right: 76%;
        font-size: large;
        padding-top: 3%;
    }

    #MobileSlider {
        display: none;
    }

    .footer-copyrightsocial ul {
        padding: 0;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -10%;
    }

    div.single-widget.widget-quicklinks ul li {
        font-size: x-small;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 20%;
        margin-top: 13%;
    }

    div.tm-about-image {
        margin-top: -14%;
        scale: 0.8;
    }

    div.tm-section-title.text-center {
        margin-top: 5%;
    }

    .widget-quicklinks ul li a {
        position: relative;
        padding-right: 13px;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: -10px;
    }

    ul.footeraddress {
        font-size: small;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 0%;
        margin-right: 0%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: medium;
        margin-bottom: 10%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: -30%;
        background-repeat: no-repeat;
        background-position: right;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 15%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        padding-right: 10%;
        padding-left: 10%;
        line-height: 28.5px;
        font-size: small;
    }

    div.header-logo {
        margin-right: -5%;
        scale: 0.4;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -3%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: smaller;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 25%;
        font-size: 50px;
    }

    p.proship {
        font-size: small;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 30px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 10%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 0%;
        margin-right: 0%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-small;
        margin-top: -15%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-small;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-size: 30%;
        background-position-x: 20%;
        margin-top: 15%;
    }

    div.tm-about-content {
        margin-top: 12%;
        padding: 0;
        font-size: larger;
        margin-right: 10%;
        margin-left: 10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -3%;
        margin-right: 51%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: 101%;
        background-repeat: no-repeat;
        height: 377px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        margin-top: 0%;
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.5;
        margin-right: 80%;
        margin-top: -10%;
        width: 27%;
    }

    div.tm-about-image {
        margin-bottom: 0%;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 0%;
        margin-left: 0%;
        margin-top: 0%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 50%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 2%;
        scale: 80%;
        margin-top: -3%;
    }

    #logofooter {
        scale: 0.4;
        margin-right: -45%;
        margin-top: -18%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: -30%;
        margin-bottom: 4%;
    }

    #location {
        margin-right: 55%;
        margin-bottom: 0%;
        margin-top: -23%;
        scale: 1;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 12px;
        padding-right: 36%;
        padding-left: 0%;
        margin-right: 42%;
        margin-left: -37%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 55px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 53%;
        font-size: 17px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 800px) and (max-width: 899px) {
    p.negahdari {
        margin-right: 0;
    }

    .widget-quicklinks ul li a {
        font-size: smaller;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 26%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 3%;
        margin-right: 2%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: large;
        margin-bottom: 10%;
    }

    div.tm-education-content h3 {
        font-size: 26px;
    }

    #footerlogosec {
        margin-right: -10%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 16%;
        font-size: x-small;
    }

    .tm-blog-content h3 {
        font-size: 22px;
        margin-right: 82%;
        margin-top: -33%;
        padding-top: 5%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;

    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 15%;
        margin-bottom: 16%;
    }

    div.tm-service-content span {
        font-size: smaller;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: small;
    }

    div.header-logo {
        margin-right: -15%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1.1;
        margin-top: 0%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -6%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: initial;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 25%;
        font-size: 50px;
    }

    p.proship {
        font-size: small;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 40px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        margin-right: 5%;
        margin-left: 5%;
        text-align: center;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 25%;
        background-position-x: 17%;
    }

    div.tm-about-content {
        margin-top: 11%;
        padding: 0;
        font-size: xxx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -10%;
        margin-right: 39%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 450px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        /* margin-top: 165px; */
        /* height: 310px; */
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 82%;
        margin-top: -15%;
        width: 20%;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        margin-top: -10%;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 0%;
        margin-left: 0%;
        margin-top: 15%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 90%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: -10%;
        scale: 65%;
        margin-top: -10%;
    }

    #logofooter {
        scale: 0.4;
        margin-right: -20%;
        margin-top: -25%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -6%;
        margin-right: -31%;
        margin-bottom: 4%;
    }

    #location {
        margin-right: 51%;
        margin-bottom: 4%;
        margin-top: -25%;
        scale: 0.8;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 12px;
        padding-right: 14%;
        padding-left: 0%;
        margin-right: 69%;
        margin-left: -54%;
        padding-bottom: 4%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 40%;
        font-size: 17px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 900px) and (max-width: 999px) {
    p.negahdari {
        margin-right: 0;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 16px;
        padding-left: 17px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 26%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -13%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: 3%;
        margin-right: 6%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: large;
        margin-bottom: 10%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
    }

    #footerlogosec {
        margin-right: -10%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 60%;
    }

    .tm-blog-content h3 {
        font-size: 24px;
        margin-right: 77%;
        margin-top: -30%;
        padding-top: 8%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 15%;
        margin-bottom: 10%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: large;
    }

    div.header-logo {
        margin-right: -15%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1.3;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 25px;
        font-size: initial;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 25%;
        font-size: 50px;
    }

    p.proship {
        font-size: small;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 0px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 40px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        margin-right: 5%;
        margin-left: 5%;
        text-align: center;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 30%;
        background-position-x: 12%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0;
        font-size: xxx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -10%;
        margin-right: 39%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 510px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 82%;
        margin-top: -15%;
        width: 20%;
    }

    div.tm-about-image {
        margin-bottom: 13%
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 0%;
        margin-left: 0%;
        margin-top: 15%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 90%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 5%;
        scale: 100%;
        margin-top: 10%;
    }

    #logofooter {
        scale: 0.5;
        margin-right: 10%;
        margin-top: -25%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -6%;
        margin-right: -27%;
        margin-bottom: 4%;
        font-size: smaller;
    }

    #location {
        margin-right: 23%;
        margin-bottom: 4%;
        margin-top: 0%;
        scale: 1;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
        margin-left: 17%;
    }

    div.tm-blog-content p {
        font-size: 13px;
        padding-right: 34%;
        padding-left: 0%;
        margin-right: 45%;
        margin-left: -56%;
        padding-bottom: 5%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 40%;
        font-size: 17px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1099px) {
    p.negahdari {
        margin-right: 0;
    }

    .widget-quicklinks ul li a {
        font-size: smaller;
    }

    iframe {
        margin-top: -25%;
        margin-bottom: 15%;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 26%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        position-area: center;
        margin-top: -10%;
        margin-right: -30%;
        text-align: left;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: x-large;
        margin-bottom: 10%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 60%;
        width: 110%;
    }

    .tm-blog-content h3 {
        font-size: 26px;
        margin-right: 95%;
        margin-top: -30%;
        padding-top: 7%;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 16%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: large;
    }

    div.header-logo {
        margin-right: 0%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: initial;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
    }

    p.proship {
        font-size: large;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 60px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 50px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        margin-right: -10%;
        margin-left: -10%;
        text-align: center;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 28%;
        background-position-x: 90%;
        background-position-y: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -6%;
        margin-right: 39%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 565px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 75%;
        margin-top: -15%;
        width: 30%;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.2;
        margin-top: 42%;
        margin-left: 5%;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 10%;
        margin-left: -70%;
        margin-top: -5%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 50%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 20%;
        scale: 1.2;
        margin-top: 20%;
        margin-right: 60%;
        margin-left: -85%;
    }

    #logofooter {
        scale: 0.5;
        margin-right: 22%;
        margin-top: -29%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -3%;
        margin-right: 2%;
        margin-bottom: 0%;
        font-size: small;
    }

    #location {
        margin-right: 9%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 0.8;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {

        font-size: 14px;
        padding-right: 0%;
        padding-left: 0%;
        margin-right: 104%;
        margin-left: -74%;
        padding-bottom: 8%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 33%;
        font-size: 19px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1199px) {
    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: -2%;
        margin-right: 2%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 66%;
        text-align: -webkit-center;
        margin-right: 0%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 13px;
        margin-right: -6%;
    }

    div.footer {
        /* border-top: solid; */
        /* border-top-color: #EE2C7B; */
        padding-top: 83px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .header-icons ul li {
        font-size: 18px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
    }

    .tm-navigation ul li a {
        font-size: 10px;
    }

    iframe {
        margin-top: -17%;
        margin-bottom: 15%;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 26%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 30%;
        bottom: 130%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xx-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: x-large;
        margin-bottom: 12%;
    }

    div.tm-education-content h3 {
        font-size: 26px;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 195%;
        width: 110%;
        font-size: small;
    }

    .tm-blog-content h3 {
        font-size: 25px;
        margin-right: 103%;
        margin-top: -30%;
        padding-top: 6%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 17%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: large;
    }

    div.header-logo {
        margin-right: 0%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: initial;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 2%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
    }

    p.proship {
        font-size: large;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 60px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: center;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 50px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        margin-right: -10%;
        margin-left: -10%;
        text-align: center;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 23%;
        background-position-x: 90%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -5%;
        margin-right: 39%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;

        height: 618px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 75%;
        margin-top: -25%;
        width: 30%;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.2;
        margin-top: 42%;
        margin-left: 5%;
    }

    div.row.edubg {
        display: unset;
    }

    div.tm-education-content {
        margin-right: 10%;
        margin-left: -70%;
        margin-top: -5%;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        background-size: 50%;
    }

    a.tm-button.edubutton {
        scale: 0.7;
        margin-right: 69%;
        margin-top: -7%;
    }

    div.tm-education-image {
        margin-bottom: 20%;
        scale: 1.2;
        margin-top: 20%;
        margin-right: 60%;
        margin-left: -85%;
    }

    #logofooter {
        scale: 0.4;
        margin-right: 12%;
        margin-top: -36%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: -3%;
        margin-right: 2%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 14%;
        margin-bottom: 0%;
        margin-top: 5%;
        scale: 0.9;
    }

    div.footer-copyrightarea {
        margin-right: -8%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {

        font-size: 14px;
        padding-right: 28%;
        padding-left: 0%;
        margin-right: 76%;
        margin-left: -72%;
        padding-bottom: 10%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 44px;
        line-height: 30px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 30%;
        font-size: 17px;
    }

    a.tm-button.edubutton {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 15px;
        height: 44px;
        line-height: 30px;
        padding: 0px 25px;
        width: 37%;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
    }

    div.tm-about-content h2 {
        font-size: 55px;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 50px;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 35%;
    }

    .notemasrafp {
        padding-top: 10%;
    }

    #masrafnote {
        font-size: x-large;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    nav.main-menu {
        font-size: 12px;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 40%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 13px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 23%;
        margin-top: -5%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 40px;
        margin-top: 24%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 34%;
        width: 120%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.3;
        margin-right: -5%;
        margin-bottom: -15%;
        background: unset;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 6%;
        margin-right: -118%;
        font-size: 38px;
        margin-top: 32%;
    }

    h3#otherproh3 {
        font-size: 12px;
    }

    p#pweightRU.pweight {
        margin-left: 155px;
    }

    #proimgRU {
        margin-top: 3%;
        scale: 1;
    }

    .tm-parallax.parallaxRU {
        height: 260px;
    }

    ul.footeraddress li p {
        font-size: 8px;
    }

    p#techpRU {
        font-size: 15px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 31%;
        margin-left: -16%;
        padding-bottom: 9%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: 2%;
    }

    #abtush5 {
        font-size: 14px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    h5.product-details-sweets a {
        font-size: 10px;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: 0%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 5%;
    }

    #chococoinsh2 {
        margin-top: 35%;
    }

    #WhippingCreamh2 {
        margin-top: 34%;
    }

    #ColdGlazeh2 {
        margin-top: 32%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 35%;
    }

    div.ImgBanner {
        min-height: 500px;
        position: relative;
        z-index: 0;
    }

    div.otherproduct h3 {
        font-size: medium;
    }

    div.notemasrafp ul li {
        margin-left: -2%;
    }

    div.tm-funfact-content div {
        margin-left: 1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 80%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 24%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    .tm-navigation .tm-navigation-dropdown ul li a {
        padding: 6px 0;
        line-height: 1.3;
        display: block;
        font-weight: 400;
        font-size: 9px;
        color: #444444;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 86%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 78%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 10px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    h5.widget-title {
        margin-left: 5%;
        font-size: 13px;
    }

    .footerlink {
        font-size: medium;
        margin-left: -15%;
        direction: ltr;
    }

    #emailfield {
        margin-left: -1%;
    }

    nav.tm-navigation {
        margin-left: -5%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 84%;
        text-align: -webkit-center;
        margin-right: 0%;
        margin-bottom: -5%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    p.footer-copyright {
        font-size: 16px;
    }

    #msgsndbt {
        width: 10%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 50%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 60%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 54%;
        padding-left: 2%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -15px;
        padding-left: 18%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 17%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .notemasraf {
        padding-top: 3%;
        padding-right: 17%;
        padding-left: 22%;
        background-color: white;
        font-size: small;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 2%;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-right: 5%;
        margin-left: -46%;
    }

    ul.footeraddress {
        list-style-type: none;
        text-align: justify;
        font-size: 13px;
        margin-right: -10%;
        direction: ltr;
        margin-left: 30%;
    }

    #Drageepgimg {
        margin-top: 0;
        margin-bottom: 35%;
        margin-right: 15%;
        margin-left: 10%;
    }

    #cocoacoatingpgimg {
        margin-top: 0;
        margin-bottom: 35%;
        margin-right: 16%;
        margin-left: 9%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        font-size: smaller;
        padding-left: 2px;
    }

    div.prolistitemspan ul li p {
        font-size: small;
    }

    div.row.edubg {
        margin-left: 12%;
        margin-right: 12%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 400px;
    }

    #contacth2 {
        font-size: 24px;
        margin-top: 5%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 23%;
        font-size: 17px;
    }

    #Chipsipgimg {
        margin-top: -10%;
        scale: 1.2;
        margin-bottom: -50%;
        margin-right: 15%;
        margin-left: 5%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.2;
        margin-bottom: -45%;
        margin-right: -10%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.2;
        margin-bottom: -45%;
    }

    #cocoapistachioimg {
        margin-top: -35%;
        scale: 1;
        margin-bottom: -15%;
        margin-right: -10%;
    }

    #Hazelnutcocoaimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -15%;
        margin-right: -10%;
    }

    #creamBiscuitsimg {
        margin-top: -30%;
        scale: 0.9;
        margin-bottom: -23%;
        margin-right: -10%;
    }

    div#Compoundchocolateimg.tm-about-image {
        margin-bottom: -20%;
        scale: 1;
        margin-top: 5%;
        margin-left: 10%;
        margin-right: 25%;
    }

    #coinchocopgimg {
        margin-top: 5%;
        margin-right: 30%;
        margin-left: 5%;
        margin-bottom: -35%;
        scale: 1.2;
    }

    #concentradeimg {
        margin-top: -15%;
        scale: 0.5;
        margin-right: 0%;
        margin-bottom: -45%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -40%;
        margin-right: -10%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.6;
        margin-bottom: -60%;
        margin-right: -10%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.5;
        margin-bottom: -65%;
        margin-right: -10%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.6;
        margin-bottom: -60%;
        margin-right: -10%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.6;
        margin-right: 0%;
        margin-bottom: -30%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: -10%;
        scale: 0.7;
        margin-bottom: -40%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: -15%;
        scale: 0.65;
        margin-bottom: -40%;
    }

    #DeliCreampimg {
        margin-top: -35%;
        margin-right: -10%;
        scale: 0.7;
        margin-bottom: -35%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: -5%;
        scale: 1;
        margin-bottom: -35%;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: -10%;
        scale: 0.8;
        margin-bottom: -35%;
    }

    div.otherproduct h3 {
        margin-bottom: 15%;
        font-size: 18px;
    }

    .otherproduct {
        font-weight: bold;
        font-size: x-large;
        text-align: center;
        width: 50%;
        margin-right: 25%;
        background-color: white;
        padding-top: 5%;
        margin-bottom: 12%;
    }

    #creamfillingpgimg {
        margin-top: -20%;
        scale: 0.5;
        margin-right: 11%;
        margin-left: -2%;
        margin-bottom: -22%;
    }

    div.row.mt-30-reverse {
        scale: 78%;
        margin-bottom: -10%;
        margin-top: -16%;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 8%;
        margin-left: 10%;
        margin-right: -14%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 15px;
        margin-right: 5%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 45%;
        margin-right: 26%;
    }

    div.footer {
        padding-top: 83px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
        margin-left: 15%;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 61%;
        margin-left: -3%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -17%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 50%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: large;
        margin-bottom: 12%;
    }

    div.tm-education-content h3 {
        font-size: 16px;
        padding-top: 1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 173%;
        width: 110%;
        font-size: small;
    }

    .tm-blog-content h3 {
        font-size: 25px;
        margin-right: 83%;
        margin-top: -25%;
        padding-top: 5%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 10%;
    }

    div.tm-service-content span {
        font-size: initial;
    }

    div.tm-education-content p {
        line-height: 20.5px;
        font-size: 13px;
        direction: ltr;
        margin-left: 15%;
    }

    div.header-logo {
        margin-right: -1%;
        margin-left: 0%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 5%;
        scale: 1;
        margin-top: 1%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 13px;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 26px;
        font-weight: 900;
        margin-top: 32%;
    }

    p.proship {
        font-size: 14px;
        margin-right: 12%;
        margin-left: 12%;
        margin-bottom: 7%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 8px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 50px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 22px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        font-size: 14px;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 22%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
        margin-left: 25%;
        margin-right: -7%;
        direction: ltr;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -5%;
        margin-right: 39%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 670px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-left: 80%;
        margin-top: -10%;
        width: 24%;
        height: 32px;
        font-size: 16px;
        text-align: center;
        line-height: 32px;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: 21%;
        margin-left: 0%;
        margin-right: 9%;
    }

    #logofooter {
        scale: 0.6;
        margin-right: 110%;
        margin-top: -45%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 2%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 14%;
        margin-bottom: 2%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
        margin-left: -10%;
    }

    div.tm-blog-content p {
        font-size: 15px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 35%;
        margin-left: -16%;
        padding-bottom: 6%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 60px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 63%;
        font-size: 17px;
        height: 50px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-left: 36%;
        text-align: justify;
        direction: ltr;
        font-size: 14px;
        line-height: 21px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        scale: 75%;
        margin-top: -2%;
        margin-right: 25%;
    }

    div.tm-about-content h2 {
        font-size: 26px;
        direction: ltr;
        margin-left: 5%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 60%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 56%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 38%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: -4%;
    }

    #masrafnote {
        font-size: small;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }


}

@media only screen and (min-width: 1300px) and (max-width: 1399px) {
    nav.main-menu {
        font-size: 16px;
    }

    #ColdGlazeh2RU {
        margin-right: -30%;
        margin-top: 26%;
        font-size: 44px;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 28%
    }

    #fruitfillingh2RU {
        margin-top: 28%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 42%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 15px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 22%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -20%;
        margin-top: 30%;
    }

    #drageeh2RU {
        margin-right: -20%;
        margin-top: 29%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -110%;
        font-size: 34px;
        margin-top: 28%;
    }

    #cocoapistah2RU {
        margin-right: -109%;
        font-size: 38px;
        margin-top: 26%;
        width: 180%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 28%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 26%;
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 44px;
        margin-top: 24%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 26%;
        width: 120%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.3;
        margin-right: -5%;
        margin-bottom: -15%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-top: 28%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -118%;
        font-size: 38px;
        margin-top: 26%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -115%;
        margin-top: 26%;
        font-size: 34px;
    }

    #FruityPastryFillingh2RU {
        margin-right: -10%;
        margin-top: 28%;
    }

    h3#otherproh3 {
        font-size: 14px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 1%;
        scale: 0.9;
    }

    .tm-parallax.parallaxRU {
        height: 235px;
    }

    h3#eduh3RU {
        font-size: 18px;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -2%;
    }

    #abtush5 {
        font-size: 15px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -20%;
        width: 90%;
        margin-top: 28%;
    }

    h5.product-details-sweets a {
        font-size: 11px;
    }

    #drageeh2 {
        margin-right: -20%;
        margin-top: 28%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        margin-top: 30%;
    }

    #cocoapistah2 {
        margin-right: -20%;
        margin-top: 29%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 27%;
    }

    #BiscuitsCreamh2 {
        margin-top: 28%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 27%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: 0%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 5%;
    }

    #chococoinsh2 {
        margin-right: -20%;
        margin-top: 28%;
    }

    #ConcentratedPasteh2 {
        margin-top: 28%;
    }

    #CakeGelh2 {
        margin-top: 28%;
    }

    #VelvetCakeMixh2 {
        margin-top: 28%;
    }

    #MuffinCakeMixh2 {
        margin-top: 28%;
    }

    #SpongeCakeMixh2 {
        margin-top: 28%;
    }

    #WhippingCreamh2 {
        margin-top: 28%;
    }

    #fondanth2 {
        margin-top: 28%;
    }

    #ColdGlazeh2 {
        margin-top: 28%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 28%;
    }

    #FruityPastryFillingh2 {
        margin-top: 27%;
    }

    #fruitfillingh2 {
        margin-top: 30%;
    }

    div.ImgBanner {
        min-height: 500px;
        position: relative;
        z-index: 0;
    }

    div.tm-funfact-content div {
        margin-left: 1%;
    }

    #creamfillingh2 {
        margin-top: 30%;
    }

    div.notemasrafp ul li {
        margin-left: -2%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 79%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 35%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 84%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 76%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    .footerlink {
        font-size: medium;
        margin-left: -15%;
        direction: ltr;
    }

    #emailfield {
        margin-left: -1%;
    }

    nav.tm-navigation {
        margin-left: -5%;
    }

    #msgsndbt {
        width: 10%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 50%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 60%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 54%;
        padding-left: 2%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -20px;
        padding-left: 20%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 19%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .notemasraf {
        padding-top: 3%;
        padding-right: 20%;
        padding-left: 25%;
        background-color: white;
        font-size: small;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 2%;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-right: 40%;
        margin-left: -18%;
    }

    ul.footeraddress {
        list-style-type: none;
        text-align: justify;
        font-size: smaller;
        margin-right: -7%;
        margin-left: 28%;
        direction: ltr;
    }

    #Drageepgimg {
        margin-top: 0;
        margin-bottom: 35%;
        margin-right: 15%;
        margin-left: 10%;
    }

    #cocoacoatingpgimg {
        margin-top: 0;
        margin-bottom: 35%;
        margin-right: 16%;
        margin-left: 9%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        font-size: smaller;
        padding-left: 2px;
    }

    div.prolistitemspan ul li p {
        font-size: small;
    }

    div.row.edubg {
        margin-left: 12%;
        margin-right: 12%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 400px;
    }

    #contacth2 {
        font-size: 24px;
        margin-top: 5%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 40%;
        font-size: 17px;
    }

    #Chipsipgimg {
        margin-top: -10%;
        scale: 1.2;
        margin-bottom: -50%;
        margin-right: 10%;
        margin-left: 5%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.4;
        margin-bottom: -40%;
        margin-right: -5%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.3;
        margin-bottom: -45%;
        margin-right: 5%;
    }

    #cocoapistachioimg {
        margin-top: -20%;
        scale: 1;
        margin-bottom: -20%;
        margin-right: 5%;
    }

    #Hazelnutcocoaimg {
        margin-top: -20%;
        scale: 1;
        margin-bottom: -20%;
        margin-right: 0%;
    }

    #creamBiscuitsimg {
        margin-top: -20%;
        scale: 0.9;
        margin-bottom: -20%;
        margin-right: 5%;
    }

    div#Compoundchocolateimg.tm-about-image {
        margin-bottom: -25%;
        scale: 1.2;
        margin-top: 5%;
        margin-left: 10%;
        margin-right: 26%;
    }

    #coinchocopgimg {
        margin-top: -5%;
        margin-right: 25%;
        margin-left: -5%;
        margin-bottom: -35%;
        scale: 0.9;
    }

    #concentradeimg {
        margin-top: -15%;
        scale: 0.5;
        margin-right: 0%;
        margin-bottom: -45%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.9;
        margin-bottom: -35%;
        margin-right: 10%;
    }

    #velvetimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -50%;
        margin-right: 0%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.5;
        margin-bottom: -65%;
        margin-right: 5%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.6;
        margin-bottom: -60%;
        margin-right: 0%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.6;
        margin-right: 10%;
        margin-bottom: -30%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: 0%;
        scale: 0.7;
        margin-bottom: -35%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: 5%;
        scale: 0.8;
        margin-bottom: -35%;
    }

    #DeliCreampimg {
        margin-top: -35%;
        margin-right: 5%;
        scale: 0.8;
        margin-bottom: -35%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: 10%;
        scale: 1;
        margin-bottom: -35%;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: 5%;
        scale: 0.9;
        margin-bottom: -35%;
    }

    div.otherproduct h3 {
        margin-bottom: 15%;
        font-size: large;
    }

    .otherproduct {
        font-weight: bold;
        font-size: x-large;
        text-align: center;
        width: 50%;
        margin-right: 25%;
        background-color: white;
        padding-top: 5%;
        margin-bottom: 12%;
    }

    #creamfillingpgimg {
        margin-top: -22%;
        scale: 0.5;
        margin-right: 11%;
        margin-left: -8%;
        margin-bottom: -20%;
    }

    div.row.mt-30-reverse {
        scale: 78%;
        margin-bottom: -15%;
        margin-top: -16%;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 7%;
        margin-left: 10%;
        margin-right: -15%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 91%;
        text-align: -webkit-center;
        margin-right: 0%;
        margin-bottom: -5%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 16px;
        margin-left: 3%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 87%;
        margin-right: 4%;
    }

    div.footer {
        padding-top: 85px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
        margin-left: 15%;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 38%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -17%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 50%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: x-large;
        margin-bottom: 11%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 11px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 17px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 10px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 20px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: 58%;
        width: 100%;
    }

    .tm-blog-content h3 {
        font-size: 22px;
        margin-right: 210%;
        margin-top: -37%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: 24px;
        margin-left: 29%;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 10%;
    }

    div.tm-service-content span {
        font-size: 14px;
    }

    div.tm-education-content p {
        line-height: 20px;
        font-size: 14px;
        direction: ltr;
        margin-left: 15%;
    }

    div.header-logo {
        margin-right: -1%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 4%;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: x-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 14px;
        margin-right: -15%;
        margin-left: 29%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 30px;
        font-weight: 900;
        margin-top: 30%;
    }

    p.proship {
        font-size: 19px;
        margin-right: 12%;
        margin-left: 12%;
        margin-bottom: 6%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 50px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 20px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 14px;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.6;
        margin-top: -5%;
        margin-right: 39%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 720px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        margin-right: -16%;
        margin-top: -14%;
        width: 15%;
        font-size: 14px;
        HEIGHT: 30px;
        line-height: 30px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        margin-top: 11%;
        margin-left: 7%;
        margin-right: 0%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 110%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 13px;
        padding-right: 0%;
        padding-left: 0%;
        margin-right: 153%;
        margin-left: -148%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 60px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 57%;
        font-size: 19px;
        height: 50px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-left: 26%;
        font-size: 14px;
        text-align: justify;
        direction: ltr;
        line-height: 21px;
        margin-right: -5%;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        scale: 0.8;
        margin-right: 28%;
        margin-top: -3%;
    }

    div.tm-about-content h2 {
        font-size: 30px;
        direction: ltr;
        margin-left: 29%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 63%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 58%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 37%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: -8%;
        font-size: 14px;
    }

    #masrafnote {
        font-size: small;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 1400px) and (max-width: 1499px) {
    nav.main-menu {
        font-size: 16px;
    }

    #ColdGlazeh2RU {
        margin-right: -30%;
        margin-top: 22%;
        font-size: 44px;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 25%
    }

    #fruitfillingh2RU {
        margin-top: 26%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 28%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 15px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 22%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-top: 26%;
    }

    #drageeh2RU {
        margin-top: 26%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -77%;
        font-size: 38px;
        margin-top: 25%;
    }

    #cocoapistah2RU {
        margin-right: -76%;
        font-size: 42px;
        margin-top: 24%;
        width: 180%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 25%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 24%;
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 44px;
        margin-top: 24%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 44px;
        margin-top: 24%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 24%;
        width: 153%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.3;
        margin-right: -5%;
        margin-bottom: -15%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-top: 26%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -85%;
        font-size: 42px;
        margin-top: 24%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -82%;
        margin-top: 24%;
        font-size: 42px;
    }

    #WhippingCreamh2 {
        margin-top: 26%;
    }

    #FruityPastryFillingh2RU {
        margin-top: 25%;
    }

    h3#otherproh3 {
        font-size: 16px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 235px;
    }

    h3#eduh3RU {
        font-size: 10px;
    }

    h3#eduh3RU {
        font-size: 18px;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.7;
        margin-right: 22%;
        margin-top: -15%;
        width: 16%;
        height: 40px;
        font-size: large;
        text-align: center;
        line-height: 40px;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -2%;
    }

    div.tm-form-field textarea {
        width: 46%;
        height: 200px;
        direction: ltr;
    }

    #abtush5 {
        font-size: 12px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -20%;
        width: 122%;
        margin-top: 25%;
    }

    h5.product-details-sweets a {
        font-size: 12px;
    }

    #drageeh2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        margin-top: 26%;
    }

    #cocoapistah2 {
        margin-right: -20%;
        margin-top: 27%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 26%;
    }

    #BiscuitsCreamh2 {
        margin-top: 25%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 27%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: 0%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 5%;
    }

    #chococoinsh2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    #ConcentratedPasteh2 {
        margin-top: 25%;
    }

    #CakeGelh2 {
        margin-top: 25%;
    }

    #VelvetCakeMixh2 {
        margin-top: 25%;
    }

    #MuffinCakeMixh2 {
        margin-top: 25%;
    }

    #SpongeCakeMixh2 {
        margin-top: 25%;
    }

    #fondanth2 {
        margin-top: 25%;
    }

    #ColdGlazeh2 {
        margin-top: 25%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 25%;
    }

    #FruityPastryFillingh2 {
        margin-top: 25%;
    }

    #fruitfillingh2 {
        margin-top: 25%;
    }

    div.ImgBanner {
        min-height: 600px;
        position: relative;
        z-index: 0;
    }

    #creamfillingh2 {
        margin-top: 25%;
    }

    div.otherproduct h3 {
        font-size: large;
    }

    div.notemasrafp ul li {
        margin-left: -2%;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 36%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 71%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 47%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    .footerlink {
        font-size: small;
        margin-left: -15%;
        direction: ltr;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 15px;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: -5%;
    }

    ul.footeraddress {
        margin-left: 11%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: -15%;
        direction: ltr;
    }

    #Drageepgimg {
        margin-top: 0;
        margin-bottom: 35%;
        margin-right: 15%;
        margin-left: 10%;
    }

    #cocoacoatingpgimg {
        margin-top: 0;
        margin-bottom: 35%;
        margin-right: 25%;
        margin-left: -5%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
        font-size: smaller;
        direction: ltr;
    }

    div.prolistitemspan ul li p {
        font-size: small;
    }

    div.row.edubg {
        margin-left: 12%;
        margin-right: 12%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 400px;
    }

    #contacth2 {
        font-size: 24px;
        margin-top: 5%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 19%;
    }

    #Chipsipgimg {
        margin-top: -5%;
        scale: 1.4;
        margin-bottom: -45%;
        margin-right: 10%;
        margin-left: 15%;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.5;
        margin-bottom: -45%;
        margin-right: -10%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.3;
        margin-bottom: -40%;
        margin-right: -15%;
    }

    #cocoapistachioimg {
        margin-top: -20%;
        scale: 1.2;
        margin-bottom: -15%;
        margin-right: -5%;
    }

    #Hazelnutcocoaimg {
        margin-top: -20%;
        scale: 1.2;
        margin-bottom: -17%;
        margin-right: 0%;
    }

    #creamBiscuitsimg {
        margin-top: -20%;
        scale: 1;
        margin-bottom: -20%;
        margin-right: 0%;
    }

    div#Compoundchocolateimg.tm-about-image {
        margin-bottom: -40%;
        scale: 0.8;
        margin-top: -1%;
        margin-left: 0%;
        margin-right: 0%;
    }

    #coinchocopgimg {
        margin-top: -10%;
        margin-right: 15%;
        margin-left: -10%;
        margin-bottom: -45%;
        scale: 0.9;
    }

    #concentradeimg {
        margin-top: -9%;
        scale: 0.6;
        margin-right: 0%;
        margin-bottom: -50%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.9;
        margin-bottom: -35%;
        margin-right: 0%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.74;
        margin-bottom: -55%;
        margin-right: 0%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.55;
        margin-bottom: -60%;
        margin-right: 0%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -55%;
        margin-right: 0%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.8;
        margin-right: 10%;
        margin-bottom: -25%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: 0%;
        scale: 0.8;
        margin-bottom: -35%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: 0%;
        scale: 0.7;
        margin-bottom: -35%;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: 0%;
        scale: 0.9;
        margin-bottom: -40%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: 0%;
        scale: 1.1;
        margin-bottom: -30%;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: 5%;
        scale: 1;
        margin-bottom: -30%;
    }

    div.otherproduct h3 {
        margin-bottom: 15%;
        font-size: 18px;
    }

    .otherproduct {
        font-weight: bold;
        font-size: x-large;
        text-align: center;
        width: 50%;
        margin-right: 25%;
        background-color: white;
        padding-top: 5%;
        margin-bottom: 12%;
    }

    #creamfillingpgimg {
        margin-top: -15%;
        scale: 0.6;
        margin-right: 19%;
        margin-left: 0%;
        margin-bottom: -15%;
    }

    div.row.mt-30-reverse {
        scale: 65%;
        margin-bottom: -18%;
        margin-top: -16%;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 13%;
        margin-left: 10%;
    }

    ul.footeraddress {
        list-style-type: none;
        text-align: justify;
        font-size: smaller;
        margin-right: -7%;
        margin-left: 28%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -5px;
        padding-left: 22%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 21%;
        direction: ltr;
        padding-left: 5px;
    }

    .notemasraf {
        padding-top: 3%;
        padding-right: 26%;
        padding-left: 27%;
        background-color: white;
        font-size: small;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 2%;
    }

    .footer-copyrightsocial ul li:not(:last-child) {
        margin-left: -15px;
    }

    .footer-copyrightsocial {
        text-align: left;
        padding: 5px 0;
        text-align: center;
        margin-left: -70%;
    }

    .footer-copyrightsocial ul li a {
        font-size: 16px;
        display: inline-block;
        height: 35px;
        width: 30px;
        text-align: center;
        line-height: 35px;
        border-radius: 50px;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 89%;
        text-align: -webkit-center;
        margin-right: 0%;
        margin-bottom: -7%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 16px;
        margin-right: 5%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 29%;
        margin-right: 34%;
    }

    div.footer {
        padding-top: 89px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
        margin-left: 15%;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 50%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 15%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 12px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 12px;
    }

    img.iconsocialfooter {
        scale: 0.5;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 10px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 20px;
        margin-right: -4%;
        padding-top: 1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        width: 100%;
        margin-left: 10%;
    }

    .tm-blog-content h3 {
        font-size: 22px;
        margin-right: 169%;
        margin-top: -31%;
        padding-top: 8%;
    }

    div.tm-about-content h3 {
        font-size: x-large;
        margin-right: 40%;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 10%;
    }

    div.tm-service-content span {
        font-size: large;
    }

    div.tm-education-content p {
        line-height: 22px;
        font-size: 14px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -3%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 5%;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 14px;
        margin-right: 25%;
        margin-left: -5%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 34px;
        font-weight: 900;
        margin-top: 30%;
    }

    p.proship {
        font-size: 18px;
        margin-right: 18%;
        margin-left: 18%;
        margin-bottom: 1%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 36px;
    }

    .tm-section-title p {
        margin-bottom: -40%;
        font-size: 14px;
        margin-right: -21%;
        margin-left: -21%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 21%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
        margin-left: 30%;
        margin-right: -40%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 770px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 22%;
        margin-top: -9%;
        width: 16%;
        height: 40px;
        font-size: large;
        text-align: center;
        line-height: 40px;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: 11%;
        margin-left: 9%;
        margin-right: 0%;
    }


    #logofooter {
        scale: 0.7;
        margin-right: 112%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 14px;
        padding-right: 0%;
        padding-left: 0%;
        margin-right: 117%;
        margin-left: -100%;
        padding-bottom: 5%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 60px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 47%;
        font-size: 20px;
        height: 45px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-left: 27%;
        direction: ltr;
        text-align: justify;
        font-size: 14px;
        line-height: 21px;
        margin-right: -5%;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        padding-left: 15%;
        margin-right: 30%;
    }

    div.tm-about-content h2 {
        font-size: 30px;
        direction: ltr;
        margin-left: -4%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
        font-size: small;
    }

    .ppack {
        margin-left: 60%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 58%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 38%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: -9%;
    }

    #masrafnote {
        font-size: small;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 1500px) and (max-width: 1599px) {
    nav.main-menu {
        font-size: 16px;
    }

    #ColdGlazeh2RU {
        margin-right: -30%;
        margin-top: 22%;
        font-size: 52px;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 26%
    }

    #fruitfillingh2RU {
        margin-top: 26%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 28%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 15px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 25%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-top: 24%;
    }

    #drageeh2RU {
        margin-top: 26%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -79%;
        font-size: 42px;
        margin-top: 25%;
    }

    #cocoapistah2RU {
        margin-right: -80%;
        font-size: 44px;
        margin-top: 24%;
        width: 180%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 25%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 24%;
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 44px;
        margin-top: 24%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 24%;
        width: 150%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.3;
        margin-right: -5%;
        margin-bottom: -10%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-top: 24%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -88%;
        font-size: 46px;
        margin-top: 24%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -85%;
        margin-top: 24%;
        font-size: 46px;
    }

    #FruityPastryFillingh2RU {
        margin-top: 25%;
    }

    h3#otherproh3 {
        font-size: 18px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 235px;
    }

    h3#eduh3RU {
        font-size: 18px;
    }

    p#techpRU {
        font-size: 16px;
        padding-right: 0%;
        padding-left: 0%;
        margin-right: 105%;
        margin-left: -98%;
        padding-bottom: 3%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -3%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    div.tm-form-field textarea {
        width: 46%;
        height: 200px;
        direction: ltr;
    }

    #abtush5 {
        font-size: 13px;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #emailicon {
        margin-left: -1%;
    }

    #chipsih2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    h5.product-details-sweets a {
        font-size: 13px;
    }

    #drageeh2 {
        margin-right: -20%;
        margin-top: 24%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    #cocoapistah2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 26%;
    }

    #BiscuitsCreamh2 {
        margin-top: 25%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: 0%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 5%;
    }

    #chococoinsh2 {
        margin-top: 27%;
    }

    #ConcentratedPasteh2 {
        margin-top: 25%;
    }

    #CakeGelh2 {
        margin-top: 25%;
    }

    #VelvetCakeMixh2 {
        margin-top: 25%;
    }

    #MuffinCakeMixh2 {
        margin-top: 25%;
    }

    #SpongeCakeMixh2 {
        margin-top: 25%;
    }

    #WhippingCreamh2 {
        margin-top: 25%;
    }

    #fondanth2 {
        margin-top: 25%;
    }

    #ColdGlazeh2 {
        margin-top: 25%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 25%;
    }

    div.otherproduct h3 {
        font-size: 21px;
    }

    #FruityPastryFillingh2 {
        margin-top: 25%;
    }

    #fruitfillingh2 {
        margin-top: 25%;
    }

    div.ImgBanner {
        min-height: 600px;
        position: relative;
        z-index: 0;
    }

    #creamfillingh2 {
        margin-top: 25%;
    }

    div.notemasraf ul li {
        margin-left: -2%;
    }

    div.otherproduct h3 {
        font-size: smaller;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 65%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 34%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 46%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: -5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.row.edubg {
        margin-left: 10%;
        margin-right: 10%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 425px;
    }

    #contacth2 {
        font-size: 23px;
        margin-top: 3%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 19%;
    }

    #Chipsipgimg {
        margin-top: -15%;
        scale: 1.2;
        margin-bottom: -55%;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.4;
        margin-bottom: -40%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.2;
        margin-bottom: -35%;
        margin-right: 10%;
    }

    #cocoapistachioimg {
        margin-top: -20%;
        scale: 1.1;
        margin-bottom: -15%;
        margin-right: -5%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.2;
        margin-bottom: -15%;
    }

    #creamBiscuitsimg {
        margin-top: -20%;
        scale: 1;
        margin-bottom: -15%;
    }

    div#Compoundchocolateimg.tm-about-image {
        margin-bottom: -25%;
        scale: 1.1;
        margin-top: -1%;
        margin-left: 15%;
        margin-right: 5%;
    }

    #coinchocopgimg {
        margin-top: 0;
        margin-right: 10%;
        margin-left: -5%;
        margin-bottom: -45%;
    }

    #concentradeimg {
        margin-top: -5%;
        scale: 0.7;
        margin-right: 0%;
        margin-bottom: -50%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.9;
        margin-bottom: -30%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -50%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -60%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -50%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.7;
        margin-right: 10%;
        margin-bottom: -25%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: -10%;
        scale: 0.8;
        margin-bottom: -30%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: -5%;
        scale: 0.8;
        margin-bottom: -30%;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: 0%;
        scale: 0.9;
        margin-bottom: -35%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: 6%;
        scale: 1.1;
        margin-bottom: -30%;
    }

    #fruitfillingimg {
        margin-top: -20%;
        margin-right: 0%;
        scale: 1.1;
        margin-bottom: -30%;
    }

    div.otherproduct h3 {
        margin-bottom: 15%;
        font-size: 24px;
    }

    .otherproduct {
        font-weight: bold;
        font-size: x-large;
        text-align: center;
        width: 50%;
        margin-right: 25%;
        background-color: white;
        padding-top: 5%;
        margin-bottom: 12%;
    }

    #creamfillingpgimg {
        margin-top: -10%;
        scale: 0.8;
        margin-right: 11%;
        margin-left: 0%;
        margin-bottom: -20%;
    }

    div.row.mt-30-reverse {
        scale: 65%;
        margin-bottom: -18%;
        margin-top: -16%;
    }

    div.tm-education-image {
        scale: 104%;
        margin-top: 14%;
        margin-left: 12%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -10px;
        padding-left: 22%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 21%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: -10%;
        margin-right: 35%;
    }

    .notemasraf {
        margin-right: 6%;
        padding-right: 20%;
        padding-left: 27%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 3%;
    }

    ul.footeraddress {
        margin-left: 27%;
        list-style-type: none;
        text-align: justify;
        font-size: 12px;
        margin-right: -25%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 2%;
        margin-right: -4%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 94%;
        text-align: -webkit-center;
        margin-right: 0%;
        margin-bottom: -5%;
    }

    #contactuscadrin {
        background-color: white;
        height: 365px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 0%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 70%;
        margin-right: 12%;
    }

    div.footer {
        padding-top: 95px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1;
        margin-left: 14%;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.blog-slider-item {
        background-image: none;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 50%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: x-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 12%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 12px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 13px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 10px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 11px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 20px;
        margin-right: -4%;
        padding-top: 1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -25%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 28px;
        margin-right: 159%;
        margin-top: -25%;
        padding-top: 5%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        margin-right: 19%;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 15%;
    }

    div.tm-service-content span {
        font-size: 14px;
    }

    div.tm-education-content p {
        line-height: 23.5px;
        font-size: 14px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -2%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 4%;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 14px;
        margin-right: 19%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 35px;
        margin-top: 35%;
        font-weight: 900;
    }

    p.proship {
        font-size: 18px;
        margin-right: 18%;
        margin-left: 18%;
        margin-bottom: 5%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -40%;
        font-size: 15px;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 23%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
        margin-left: 22%;
        margin-right: -37%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 835px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 15%;
        margin-top: -2%;
        width: 22%;
        height: 50px;
        line-height: 45px;
        text-align: center;
        font-size: x-large;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: 11%;
        margin-left: 11%;
        margin-right: -7%;
    }


    #logofooter {
        scale: 0.7;
        margin-right: 115%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 16px;
        padding-right: 0%;
        padding-left: 0%;
        margin-right: 108%;
        margin-left: -98%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 42%;
        font-size: 18px;
        height: 50px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-left: 30%;
        direction: ltr;
        text-align: justify;
        font-size: 16px;
        line-height: 17px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        padding-left: 15%;
        margin-right: 25%;
    }

    div.tm-about-content h2 {
        font-size: 36px;
        direction: ltr;
        margin-left: 0%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 64%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 38%;
    }

    .notemasrafp {
        padding-top: 10%;
        font-size: 16px;
        direction: ltr;
        margin-left: -10%;
    }

    #masrafnote {
        font-size: 15px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1699px) {
    nav.main-menu {
        font-size: 17px;
    }

    #ColdGlazeh2RU {
        margin-top: 28%;
        margin-right: -30%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 26%
    }

    #fruitfillingh2RU {
        margin-top: 28%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 32%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 15px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 15%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -45%;
        font-size: 44px;
        margin-top: 30%;
    }

    #drageeh2RU {
        margin-right: -35%;
        margin-top: 28%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -84%;
        font-size: 46px;
        margin-top: 28%;
    }

    #cocoapistah2RU {
        margin-right: -80%;
        font-size: 49px;
        margin-top: 28%;
        width: 180%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 27%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 26%;
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 54px;
        margin-top: 28%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 28%;
        width: 146%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.3;
        margin-right: -30%;
        margin-bottom: -5%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -24%;
        margin-top: 26%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -92%;
        font-size: 50px;
        margin-top: 26%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -90%;
        margin-top: 28%;
        font-size: 50px;
    }

    #FruityPastryFillingh2RU {
        margin-right: -46%;
        margin-top: 30%;
    }

    h3#otherproh3 {
        font-size: 20px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    h3#eduh3RU {
        font-size: 22px;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 9%;
        margin-left: 10%;
        margin-right: -10%;
    }

    p#techpRU {
        font-size: 16px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 5%;
        margin-right: 87%;
        margin-left: -77%;
        padding-bottom: 5%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.7;
        margin-right: -10%;
        margin-top: -9%;
        width: 20%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: x-large;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -2%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    div.tm-form-field textarea {
        width: 46%;
        height: 200px;
        direction: ltr;
    }

    #abtush5 {
        font-size: 14px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #contacth2 {
        margin-top: 5%;
        font-size: 28px;
    }

    #chipsih2 {
        margin-right: -24%;
        width: 120%;
        margin-top: 28%;
    }

    h5.product-details-sweets a {
        font-size: 18px;
    }

    #drageeh2 {
        margin-right: -30%;
        width: 126%;
        margin-top: 26%;
    }

    #cocoacoatingh2 {
        margin-right: -35%;
        width: 130%;
        font-size: 50px;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
        margin-top: 28%;
    }

    #BiscuitsCreamh2 {
        margin-top: 28%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 28%;
    }

    #chococoinsh2 {
        margin-right: -25%;
        margin-top: 28%;
    }

    #ConcentratedPasteh2 {
        margin-top: 28%;
    }

    #CakeGelh2 {
        margin-top: 28%;
    }

    #VelvetCakeMixh2 {
        margin-top: 28%;
    }

    #MuffinCakeMixh2 {
        margin-top: 28%;
    }

    #SpongeCakeMixh2 {
        margin-top: 28%;
    }

    #WhippingCreamh2 {
        margin-top: 28%;
    }

    #fondanth2 {
        margin-top: 28%;
    }

    #ColdGlazeh2 {
        margin-top: 28%;
        margin-right: -30%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 28%;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
    }

    #fruitfillingh2 {
        margin-top: 27%;
    }

    div.ImgBanner {
        min-height: 600px;
        position: relative;
        z-index: 0;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    #creamfillingh2 {
        margin-top: 27%;
    }

    div.otherproduct h3 {
        font-size: smaller;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 22%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 69%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 26%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 15px;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: -5%;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-left: 12%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 27%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.4;
        margin-right: -25%;
        margin-bottom: -35%;
    }

    div#Compoundchocolateimg.tm-about-image {
        margin-top: -5%;
        margin-bottom: -30%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.7;
        margin-right: -15%;
        margin-bottom: -20%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: -25%;
        scale: 0.85;
        margin-bottom: -30%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: -25%;
        scale: 0.9;
        margin-bottom: -30%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -20%;
        margin-left: 5%;
        scale: 1.1;
        margin-bottom: -30%;
    }

    #Chipsipgimg {
        margin-top: -15%;
        margin-right: -15%;
        margin-left: 15%;
        margin-bottom: -55%;
        scale: 1.2;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.3;
        margin-bottom: -35%;
        margin-right: -15%;
    }

    #cocoapistah2 {
        margin-right: -55%;
        width: 151%;
        font-size: 48px;
        margin-top: 30%;
    }

    #cocoapistachioimg {
        margin-top: -20%;
        scale: 1.2;
        margin-bottom: -10%;
        margin-right: -30%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.2;
        margin-bottom: -15%;
        margin-right: -30%;
    }

    #creamBiscuitsimg {
        margin-top: -20%;
        scale: 1;
        margin-bottom: -15%;
        margin-right: -25%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -4%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -4%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -4%;
    }

    #coinchocopgimg {
        margin-top: -10%;
        margin-right: -9%;
        margin-bottom: -55%;
        scale: 0.9;
    }

    #concentradeimg {
        margin-top: -6%;
        scale: 0.7;
        margin-right: -20%;
        margin-bottom: -50%;
    }

    #cakegelimg {
        margin-top: -35%;
        margin-right: -25%;
        scale: 1;
        margin-bottom: -30%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.75;
        margin-bottom: -50%;
        margin-right: -25%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 230px;
        line-height: normal;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -60%;
        margin-right: -25%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -50%;
        margin-right: -30%;
    }

    #DeliCreampimg {
        margin-top: -35%;
        margin-right: -25%;
        scale: 0.9;
        margin-bottom: -30%;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: -20%;
        scale: 1.1;
        margin-bottom: -25%;
    }

    div.otherproduct h3 {
        font-size: 24px;
    }

    #creamfillingpgimg {
        margin-top: -5%;
        scale: 90%;
        margin-right: 0%;
        margin-left: 20%;
        margin-bottom: -15%;
    }

    .mt-30-reverse {
        margin-top: -30px;
        margin-bottom: -10%;
        scale: 68%;
    }

    div.row.edubg {
        margin-left: 0%;
        margin-right: 0%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 540px;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 2px;
        padding-left: 17%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 17%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: -10%;
        margin-right: 0%;
    }

    .notemasraf {
        padding-top: 2%;
        margin-right: 6%;
        padding-right: 20%;
        padding-left: 27%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 2%;
    }

    ul.footeraddress {
        margin-left: 11%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: -15%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 2%;
        margin-right: -4%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 100%;
        text-align: -webkit-center;
        margin-right: 0%;
    }

    #contactuscadrin {
        background-color: white;
        height: 340px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 17px;
        margin-left: 5%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 52%;
        margin-right: 22%;
    }

    div.footer {
        padding-top: 104px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -13%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xx-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 13%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 13px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 14px;
        padding-left: 4%;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 11px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 15px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 26px;
        margin-right: -3%;
        padding-top: 1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -55%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 138%;
        margin-top: -18%;
        padding-top: 7%;
    }

    div.tm-about-content h3 {
        font-size: xx-large;
        margin-left: 2%;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 17%;
    }

    div.tm-service-content span {
        font-size: 19px;
    }

    div.tm-education-content p {
        line-height: 28.5px;
        font-size: 17px;
        direction: ltr;
        margin-left: 10%;
    }

    div.header-logo {
        margin-left: -7%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 6%;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 16px;
        margin-right: -5%;
        margin-left: 2%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 35%;
        font-weight: 900;
    }

    p.proship {
        font-size: 21px;
        margin-right: 16%;
        margin-left: 16%;
        margin-bottom: -13%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
        margin-right: 5%;
        margin-left: -7%;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 30px;
    }

    .tm-section-title p {
        margin-bottom: -40%;
        font-size: 16px;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 22%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 863px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: -10%;
        margin-top: -13%;
        width: 20%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: x-large;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: 10%;
        margin-left: -2%;
        margin-right: 0%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 140%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 16px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 5%;
        margin-right: 89%;
        margin-left: -77%;
        padding-bottom: 3%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 61%;
        font-size: 28px;
        line-height: 65px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-left: 11%;
        direction: ltr;
        text-align: justify;
        font-size: 17px;
        line-height: 30px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        padding-left: 8%;
        margin-right: 7%;
    }

    div.tm-about-content h2 {
        font-size: 55px;
        direction: ltr;
        margin-left: 4%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 73%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 19%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: -20%;
    }

    #masrafnote {
        font-size: 15px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 1700px) and (max-width: 1799px) {
    nav.main-menu {
        font-size: 18px;
    }

    #ColdGlazeh2RU {
        margin-top: 25%;
        margin-right: -35%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 24%
    }

    #fruitfillingh2RU {
        margin-top: 26%;
        margin-left: -3%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 48%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 15px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 20%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -45%;
        font-size: 44px;
        margin-top: 30%;
    }

    #drageeh2RU {
        margin-right: -40%;
        margin-top: 24%;
        font-size: 50px;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -78%;
        font-size: 43px;
        margin-top: 26%;
    }

    #cocoapistah2RU {
        margin-right: -80%;
        font-size: 49px;
        margin-top: 25%;
        width: 180%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 25%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 24%;
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 54px;
        margin-top: 24%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 24%;
        width: 152%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.4;
        margin-right: -20%;
        margin-bottom: 15%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -24%;
        margin-top: 30%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -86%;
        font-size: 50px;
        margin-top: 24%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -85%;
        margin-top: 25%;
        font-size: 50px;
    }

    #FruityPastryFillingh2RU {
        margin-right: -46%;
        margin-top: 24%;
    }

    h3#otherproh3 {
        font-size: 20px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 13%;
        margin-left: 11%;
    }

    h3#eduh3RU {
        font-size: 26px;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -10%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -25%;
        width: 126%;
        margin-top: 25%;
    }

    #drageeh2 {
        margin-right: -30%;
        width: 132%;
        margin-top: 24%;
    }

    #cocoacoatingh2 {
        margin-right: -33%;
        width: 135%;
        font-size: 48px;
        margin-top: 26%;
    }

    #cocoapistah2 {
        margin-right: -54%;
        width: 155%;
        font-size: 50px;
        margin-top: 26%;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
        margin-top: 26%;
    }

    #BiscuitsCreamh2 {
        margin-top: 25%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 25%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 5%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: 0%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: 0%;
    }

    #chococoinsh2 {
        margin-right: -35%;
        margin-top: 26%;
    }

    #ConcentratedPasteh2 {
        margin-top: 25%;
    }

    #CakeGelh2 {
        margin-top: 25%;
    }

    #VelvetCakeMixh2 {
        margin-top: 25%;
    }

    #MuffinCakeMixh2 {
        margin-top: 25%;
    }

    #SpongeCakeMixh2 {
        margin-top: 25%;
    }

    #WhippingCreamh2 {
        margin-top: 25%;
    }

    #fondanth2 {
        margin-top: 25%;
    }

    #ColdGlazeh2 {
        margin-top: 25%;
        margin-right: -30%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 25%;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    #FruityPastryFillingh2 {
        margin-top: 25%;
    }

    #fruitfillingh2 {
        margin-top: 25%;
    }

    div.ImgBanner {
        min-height: 600px;
        position: relative;
        z-index: 0;
    }

    #creamfillingh2 {
        margin-top: 24%;
    }

    div.otherproduct h3 {
        font-size: larger;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 81%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 20%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 87%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 22%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 15px;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: -5%;
    }

    div.row.edubg {
        margin-left: -8%;
        margin-right: -8%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 615px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-left: 6%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 24%;
    }

    div#Compoundchocolateimg.tm-about-image {
        margin-bottom: -45%;
        scale: 0.7;
        margin-top: -25%;
        margin-left: -15%;
        margin-right: -30%;
    }

    #fondantpgimg {
        margin-top: -10%;
        scale: 0.7;
        margin-bottom: 5%;
        margin-right: -5%;
        margin-left: 5%;
    }

    #coldglazepgimg {
        margin-top: -5%;
        scale: 1;
        margin-bottom: -15%;
        margin-right: 5%;
        margin-left: -10%;
    }

    #delipgimg {
        margin-top: -5%;
        scale: 0.9;
        margin-bottom: -15%;
        margin-right: 5%;
        margin-left: -10%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 0%;
        scale: 1.1;
        margin-bottom: -15%;
        margin-right: 0%;
        margin-left: 5%;
    }

    #fruitfillingpgimg {
        margin-top: -15%;
        scale: 1.1;
        margin-bottom: -15%;
        margin-right: 20%;
        margin-left: -30%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 51%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 59%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 57%;
        padding-left: 2%;
    }

    #Chipsipgimg {
        margin-top: -15%;
        margin-bottom: -70%;
        scale: 1.2;
        margin-right: -20%;
        margin-left: 0%;
    }

    #Drageepgimg {
        margin-top: 5%;
        margin-bottom: -15%;
        scale: 1.1;
        margin-right: -15%;
        margin-left: 0%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.3;
        margin-right: -5%;
        margin-bottom: -35%;
    }

    #cocoapistachioimg {
        margin-top: -15%;
        scale: 1.1;
        margin-bottom: 10%;
        margin-right: -20%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.3;
        margin-bottom: 16%;
        margin-right: -20%;
    }

    #creamBiscuitsimg {
        margin-top: -15%;
        scale: 1;
        margin-bottom: 10%;
        margin-right: -20%;
    }

    #coinchocopgimg {
        margin-top: -10%;
        margin-right: -8%;
        margin-left: -19%;
        margin-bottom: -70%;
        scale: 0.9;
    }

    #concentradeimg {
        margin-top: -6%;
        scale: 0.7;
        margin-right: -20%;
        margin-bottom: -20%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 1;
        margin-right: -25%;
        margin-bottom: -15%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.9;
        margin-right: -15%;
        margin-bottom: 0%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -25%;
        margin-right: -20%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -35%;
        margin-right: -20%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -25%;
        margin-right: -20%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.7;
        margin-right: -10%;
        margin-bottom: 5%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -15%;
        margin-bottom: -15%;
        scale: 1.2;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -23%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -23%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 250px;
        line-height: normal;
    }

    div.otherproduct h3 {
        margin-right: -19%;
        margin-left: -19%;
    }

    #creamfillingpgimg {
        margin-top: -10%;
        margin-right: 0%;
        scale: 0.9;
        margin-left: 5%;
        margin-bottom: -20%;
    }

    .mt-30-reverse {
        margin-top: -30px;
        margin-bottom: 25px;
        scale: 93%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -12px;
        padding-left: 21%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        padding-left: 20px;
        margin-left: 19%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 5%;
        margin-right: 25%;
    }

    .notemasraf {
        padding-top: 4%;
        margin-right: 0%;
        padding-right: 19%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 2%;
    }

    ul.footeraddress {
        margin-left: 18%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: -35%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 2%;
        margin-right: -4%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 98%;
        text-align: -webkit-center;
        margin-right: -3%;
    }

    #contactuscadrin {
        background-color: white;
        height: 345px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 16px;
        margin-left: 5%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 85%;
        margin-right: 4%;
    }

    div.footer {
        padding-top: 110px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -14%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xx-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 13%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 15px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 12px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 14px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 30px;
        margin-right: -3%;
        padding-top: 1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -41%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 159%;
        margin-top: -18%;
        padding-top: 11%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 17%;
    }

    div.tm-service-content span {
        font-size: 18px;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: 17px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -6%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -3%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 17px;
        margin-right: 3%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 40%;
        font-weight: 900;
    }

    p.proship {
        font-size: 22px;
        margin-right: 4%;
        margin-left: 4%;
        margin-bottom: 2%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 17px;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: 36px;
        margin-left: -13%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 921px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: -2%;
        margin-top: -11%;
        width: 20%;
        height: 50px;
        line-height: 50px;
        font-size: x-large;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: -15%;
        scale: 1;
        margin-top: 9%;
        margin-left: -8%;
        margin-right: 0%;
    }


    #logofooter {
        scale: 0.7;
        margin-right: 132%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 17px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 4%;
        margin-right: 101%;
        margin-left: -96%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 61%;
        font-size: 28px;
        line-height: 65px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-right: 0%;
        padding-left: 18%;
        direction: ltr;
        text-align: justify;
        font-size: 17px;
        line-height: 30px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        padding-left: 4%;
        margin-right: 15%;
    }

    div.tm-about-content h2 {
        font-size: 55px;
        direction: ltr;
        padding-left: 22%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 75%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 32%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 2%;
        padding-right: 5%;
    }

    #masrafnote {
        font-size: smaller;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 1800px) and (max-width: 1899px) {
    nav.main-menu {
        font-size: 18px;
    }

    #ColdGlazeh2RU {
        margin-top: 32%;
        margin-right: -28%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 36%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 15px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 15%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -40%;
        font-size: 48px;
        margin-top: 34%;
    }

    #drageeh2RU {
        margin-right: -35%;
        margin-top: 32%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -99%;
        font-size: 43px;
        margin-top: 34%;
    }

    #cocoapistah2RU {
        margin-right: -80%;
        font-size: 49px;
        margin-top: 32%;
        width: 161%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 30%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 54px;
        margin-top: 32%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 31%;
        width: 132%;
    }

    #concentradeimgRU {
        margin-top: -10%;
        scale: 1.2;
        margin-right: -15%;
        margin-bottom: 5%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -25%;
        margin-top: 32%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -106%;
        font-size: 48px;
        margin-top: 32%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -104%;
        margin-top: 32%;
        font-size: 50px;
    }

    #ColdGlazeh2 {
        margin-right: -30%;
        margin-top: 30%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -45%;
        margin-top: 31%;
    }

    h3#otherproh3 {
        font-size: 20px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    h3#eduh3RU {
        font-size: 22px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 17px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 2%;
        margin-right: 102%;
        margin-left: -94%;
        padding-bottom: 7%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -9%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    #contacth2 {
        font-size: 34px;
    }

    #abtush5 {
        font-size: larger;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #drageeh2 {
        margin-right: -30%;
        width: 112%;
        margin-top: 30%;
    }

    #CakeGelh2 {
        margin-top: 32%;
    }

    #SpongeCakeMixh2 {
        margin-top: 30%;
    }

    #WhippingCreamh2 {
        margin-top: 31%;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.otherproduct h3 {
        font-size: x-large;
    }

    div.notemasrafp ul li {
        margin-left: -2%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 73%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 16%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: -5%;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-left: 7%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    #Compoundchocolateimg {
        margin-bottom: -40%;
        scale: 0.9;
        margin-right: -5%;
        margin-left: -20%;
        margin-top: 0%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #chipsih2 {
        margin-right: -30%;
    }

    #Drageepgimg {
        margin-top: 0;
        margin-bottom: 65%;
    }

    #cocoacoatingpgimg {
        margin-top: 3%;
        margin-bottom: 40%;
        margin-left: 0%;
        scale: 120%;
    }

    #cocoacoatingh2 {
        margin-right: -34%;
        width: 115%;
        font-size: 42px;
        margin-top: 34%;
    }

    #cocoapistah2 {
        margin-right: -53%;
        width: 134%;
        font-size: 50px;
        margin-top: 32%;
    }

    #compundchocoh2 {
        margin-right: -30%;
        margin-top: 32%;
    }

    #chococoinsh2 {
        margin-right: -30%;
    }

    div.tm-education-image {
        scale: 105%;
        margin-top: 14%;
        margin-left: 16%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 26%;
    }

    div.tm-form-field input {
        width: 46%;
        padding-left: 2%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 39%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 47%;
        height: 200px;
        direction: ltr;
    }

    #Chipsipgimg {
        margin-top: 5%;
        margin-left: 10%;
        margin-right: -20%;
        margin-bottom: -55%;
        scale: 1.3;
    }

    #cocoachipsiimg {
        margin-top: -20%;
        scale: 0.9;
        margin-right: 10%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.4;
        margin-right: -5%;
        margin-bottom: -50%;
    }

    #cocoacoatingimg {
        margin-top: -5%;
        scale: 1.1;
        margin-right: 5%;
        margin-bottom: -25%;
    }

    #cocoapistachioimg {
        margin-top: -15%;
        scale: 1.2;
        margin-bottom: 0%;
        margin-right: -10%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.2;
        margin-bottom: 0%;
        margin-right: -10%;
    }

    #creamBiscuitsimg {
        margin-top: -15%;
        scale: 1;
        margin-bottom: 0%;
        margin-right: -10%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -10%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -16%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -16%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -16%;
    }

    #coinchocopgimg {
        margin-top: 0%;
        margin-right: 0%;
        margin-left: -10%;
        margin-bottom: -45%;
        scale: 1.1;
    }

    #concentradeimg {
        margin-top: -12%;
        scale: 0.6;
        margin-right: -10%;
        margin-bottom: -30%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.9;
        margin-bottom: -15%;
        margin-right: -5%;
    }

    #velvetimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -45%;
        margin-right: -10%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -50%;
        margin-right: -10%;
    }

    #spongeimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -35%;
        margin-right: -10%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.6;
        margin-right: 0%;
        margin-bottom: -15%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: -10%;
        margin-bottom: -15%;
        scale: 0.8;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: -10%;
        margin-bottom: -20%;
        scale: 0.8;
    }

    #DeliCreampimg {
        margin-top: -35%;
        margin-right: -15%;
        margin-bottom: -15%;
        scale: 0.8;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: -7%;
        scale: 1;
        margin-bottom: -15%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: -15%;
        margin-bottom: -15%;
        scale: 1.1;
    }

    #creamfillingpgimg {
        margin-top: -5%;
        scale: 95%;
        margin-right: 13%;
        margin-left: -2%;
        margin-bottom: -5%;
    }

    div.row.mt-30-reverse {
        scale: 81%;
    }

    div.row.edubg {
        margin-left: 0%;
        margin-right: 0%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 540px;
    }

    .notemasraf {
        margin-right: 6%;
        padding-right: 20%;
        padding-left: 27%;
        background-color: white;
        font-size: 18px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 2%;
    }

    ul.footeraddress {
        margin-left: 16%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: -15%;
        direction: ltr;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -15px;
        padding-left: 23%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -10%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 22%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 5%;
        margin-right: 22%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 96%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 345px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 1%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 88%;
        margin-right: 4%;
    }

    div.footer {
        padding-top: 116px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -14%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xx-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 13%;
        font-weight: 900;

    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 15px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 16px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 14px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 26px;
        margin-right: -2%;
        padding-top: 1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -45%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 157%;
        margin-top: -20%;
        padding-top: 14%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 20%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 30.5px;
        font-size: 16px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -7%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 18px;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 40%;
        font-weight: 900;
    }

    p.proship {
        font-size: 22px;
        margin-right: 11%;
        margin-left: 11%;
        margin-bottom: -8%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 18px;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 22%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: 38px;
        margin-right: 0%;
        margin-left: -10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 986px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: -5%;
        margin-top: -11%;
        width: 24%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: x-large;
    }

    div.tm-about-image {
        margin-bottom: 10%;
        scale: 1;
        margin-top: 7%;
        margin-left: -7%;
        margin-right: -14%;
    }


    #logofooter {
        scale: 0.7;
        margin-right: 132%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 3%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 17px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 2%;
        margin-right: 104%;
        margin-left: -94%;
        padding-bottom: 5%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 61%;
        font-size: 30px;
        line-height: 65px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-right: 22%;
        font-size: 17px;
        direction: ltr;
        margin-right: -14%;
        text-align: justify;
        line-height: 26px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: 15%;
    }

    div.tm-about-content h2 {
        font-size: 54px;
        direction: ltr;
        margin-left: 19%;
        margin-right: -19%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 26%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: -9%;
    }

    #masrafnote {
        font-size: smaller;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 1900px) and (max-width: 1999px) {
    div.tm-section.services-area.tm-padding-section5.productsec.RUsec {
        margin-bottom: -10%;
        margin-top: -3%;
    }

    nav.main-menu {
        font-size: 17px;
    }

    #rulang,
    #falang,
    #enlang,
    #arlang {
        scale: 0.6;
    }

    #ColdGlazeh2RU {
        margin-top: 28%;
        margin-right: -21%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 30%
    }

    #fruitfillingh2RU {
        margin-top: 30%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 36%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #abtusRU {
        margin-top: -20%;
    }

    #gallerytitleRU {
        margin-left: 20%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -40%;
        margin-top: 29%;
    }

    #drageeh2RU {
        margin-right: -30%;
        margin-top: 29%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -110%;
        font-size: 38px;
        margin-top: 30%;
    }

    #cocoapistah2RU {
        margin-right: -80%;
        font-size: 44px;
        margin-top: 28%;
        width: 150%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 30%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 28%;
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -66%;
        font-size: 54px;
        margin-top: 26%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 28%;
        width: 121%;
    }

    #concentradeimgRU {
        margin-top: -10%;
        scale: 0.9;
        margin-right: 5%;
        margin-bottom: -10%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -20%;
        margin-top: 30%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -117%;
        font-size: 46px;
        margin-top: 26%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -115%;
        margin-top: 27%;
        font-size: 46px;
    }

    #FruityPastryFillingh2RU {
        margin-right: -35%;
        margin-top: 30%;
    }

    h3#otherproh3 {
        font-size: 22px;
    }

    p#pweightRU.pweight {
        margin-left: 100px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 13%;
        margin-left: 10%;
    }

    h3#eduh3RU {
        font-size: 19px;
    }

    p#techpRU {
        font-size: 15px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 114%;
        margin-left: -104%;
        padding-bottom: 0%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -6%;
    }

    #creamfillingh2 {
        margin-top: 30%;
    }

    #chipsih2 {
        margin-right: -20%;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 29%;
    }

    #BiscuitsCreamh2 {
        margin-top: 30%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 30%;
    }

    #chococoinsh2 {
        margin-top: 30%;
    }

    #ConcentratedPasteh2 {
        margin-top: 30%;
    }

    #CakeGelh2 {
        margin-top: 30%;
    }

    #VelvetCakeMixh2 {
        margin-top: 30%;
    }

    #MuffinCakeMixh2 {
        margin-top: 30%;
    }

    #SpongeCakeMixh2 {
        margin-top: 30%;
    }

    #WhippingCreamh2 {
        margin-top: 30%;
    }

    #fondanth2 {
        margin-top: 30%;
    }

    #ColdGlazeh2 {
        margin-top: 30%;
        margin-right: -20%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 30%;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
    }

    #fruitfillingh2 {
        margin-top: 30%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 65%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 34%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 64%;
        margin-bottom: 10%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    #abtush5 {
        font-size: 17px;
    }

    div.otherproduct h3 {
        font-size: 24px;
    }

    .otherproduct {
        font-weight: bold;
        font-size: x-large;
        text-align: center;
        width: 50%;
        margin-right: 25%;
        background-color: white;
        padding-top: 5%;
        margin-bottom: 10%;
    }

    #drageeh2 {
        margin-right: -23%;
        margin-top: 30%;
        width: 93%;
    }

    #cocoacoatingh2 {
        margin-right: -25%;
        width: 95%;
        margin-top: 30%;
    }

    #cocoacoatingpgimg {
        scale: 0.75;
        margin-top: -3%;
        margin-bottom: 26%;
    }

    #cocoapistah2 {
        width: 112%;
        margin-right: -42%;
        margin-top: 30%;
    }

    H2#HazelnutCocoaCreamlable {
        width: 100%;
        margin-right: -30%;
    }

    div#Compoundchocolateimg.tm-about-image {
        scale: 0.9;
        margin-top: 5%;
        margin-right: 5%;
        margin-left: -10%;
        margin-bottom: -45%;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-right: -12%;
        margin-left: 19%;
    }

    img#aboutusimgp1.wow {
        scale: 76%;
        margin-top: 13%;
        margin-right: 5%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.notemasrafp ul {
        margin-left: -1%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: 18px;
        text-align: justify;
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
        direction: ltr;
    }

    ul#contactusul {
        margin-left: 3%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 8%;
    }

    #socialspan {
        margin-left: 5%;
    }

    img#socialicon.iconcontactustop {
        margin-left: -5px;
    }

    img#callicon.iconcontactustop {
        margin-left: -4px;
    }

    img#emailicon.iconcontactustop {
        margin-left: -10px;
    }

    h2#contacth2 {
        font-size: x-large;
        margin-top: 5%;
    }

    .footer-copyrightsocial ul li:not(:last-child) {
        margin-left: -20px;
    }

    div.single-widget.widget-quicklinks ul {
        margin-left: -4%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
        width: 85%;
        font-size: 14px;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 0%;
        margin-right: 22%;
    }

    div.tm-form-field input {
        width: 46%;
        padding-left: 2%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 39%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 47%;
        height: 200px;
    }

    #Chipsipgimg {
        margin-top: 5%;
        margin-left: 10%;
        margin-right: -5%;
        margin-bottom: -55%;
        scale: 1.2;
    }

    #cocoachipsiimg {
        margin-top: -20%;
        scale: 0.9;
        margin-right: 10%;
    }

    #cocoadrageimg {
        margin-top: -10%;
        scale: 1;
        margin-right: 10%;
        margin-bottom: -35%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.3;
        margin-right: 25%;
        margin-bottom: -30%;
    }

    #cocoapistachioimg {
        margin-top: -10%;
        scale: 1;
        margin-bottom: -12%;
        margin-right: 15%;
    }

    #Hazelnutcocoaimg {
        margin-top: -10%;
        scale: 1;
        margin-bottom: -10%;
        margin-right: 10%;
    }

    #creamBiscuitsimg {
        margin-top: -10%;
        scale: 0.8;
        margin-bottom: -15%;
        margin-right: 15%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -10%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -16%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -16%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -16%;
    }

    #coinchocopgimg {
        margin-top: -10%;
        margin-right: 0%;
        margin-left: -20%;
        margin-bottom: -65%;
        scale: 0.9;
    }

    #concentradeimg {
        margin-top: -15%;
        scale: 0.9;
        margin-right: 5%;
        margin-bottom: -1%;
        background: none;
    }

    #cakegelimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -25%;
        margin-right: 15%;
    }

    #velvetimg {
        margin-top: -45%;
        scale: 0.5;
        margin-bottom: -45%;
        margin-right: 10%;
    }

    #muffinimg {
        margin-top: -50%;
        scale: 0.4;
        margin-bottom: -55%;
        margin-right: 10%;
    }

    #spongeimg {
        margin-top: -45%;
        scale: 0.5;
        margin-bottom: -40%;
        margin-right: 10%;
    }

    #Whippingimg {
        margin-top: -20%;
        scale: 0.5;
        margin-right: 20%;
        margin-bottom: -20%;
    }

    #Fondantpimg {
        margin-top: -40%;
        margin-right: 5%;
        margin-bottom: -25%;
        scale: 0.6;
    }

    #ColdGlazepimg {
        margin-top: -40%;
        margin-right: 10%;
        margin-bottom: -25%;
        scale: 0.6;
    }

    #DeliCreampimg {
        margin-top: -5%;
        margin-right: 10%;
        margin-bottom: -25%;
        scale: 0.6;
    }

    #fruitfillingimg {
        margin-top: -20%;
        margin-right: -4%;
    }

    #fruitypastryfiilingimg {
        margin-top: -40%;
        margin-right: 10%;
        margin-bottom: -25%;
        scale: 0.7;
    }

    #creamfillingpgimg {
        margin-top: -15%;
        scale: 80%;
        margin-right: -5%;
        margin-left: 5%;
        margin-bottom: -20%;
    }

    div.row.mt-30-reverse {
        scale: 81%;
        margin-bottom: -15%;
    }

    div.row.edubg {
        margin-left: 6%;
        margin-right: 6%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 470px;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: left;
        direction: ltr;
        margin-left: -6px;
        padding-left: 25%;
        padding-right: 35%;
        font-size: 12px;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -7%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        direction: ltr;
        margin-left: 24%;
        padding-left: 10px;
    }

    div.footer-copyrightsocial hr {
        width: 57%;
        margin-right: 20%;
    }

    .footer-copyrightsocial {
        text-align: left;
        padding: 5px 0;
        text-align: center;
        margin-left: -20%;
    }

    ul.footeraddress {
        margin-left: 11%;
        list-style-type: none;
        text-align: justify;
        font-size: small;
        margin-right: 0%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    #delipgimg {
        margin-top: -45%;
    }

    #Delicream {
        margin-top: -30%;
        margin-right: -32%;
    }

    #fruitfillingimg {
        margin-top: -30%;
        margin-right: 12%;
        margin-bottom: -25%;
        scale: 0.8;
    }

    #creamfilling6 {
        margin-top: -80%;
        margin-right: 20%;
    }

    #creamfilling13 {
        margin-top: -30%;
        margin-right: -10%;
    }

    #msgsndbt {
        margin-right: 39%;
    }

    div.tm-form-field input {
        width: 44%;
    }

    div.tm-form-field textarea {
        width: 47%;
        height: 200px;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 2%;
        margin-right: -4%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 99%;
        text-align: -webkit-center;
        margin-right: -1%;
    }

    #contactuscadrin {
        background-color: white;
        height: 360px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
        margin-bottom: 10%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 17px;
        margin-right: 0%;
        direction: ltr;
    }

    .tm-about-content h2 {
        font-size: 100px;
    }

    div.footer {
        padding-top: 118px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -23%;
    }

    div.tm-blog-content {
        margin-right: 35%;
        margin-left: 29%;
        margin-top: 9%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 50%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xx-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: 38px;
        margin-bottom: 13%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 17%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 13px;
        font-family: 'Diodrumen';
        font-weight: 800;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
        text-decoration: unset;
        direction: ltr;
    }

    p.footer-copyright {
        font-size: 18px;
    }

    img.iconsocialfooter {
        scale: 0.5;
        margin-right: 25%;
    }

    #Socialp {
        text-align: justify;
        font-size: 15px;
        margin-right: 15px;
        font-family: 'diodrumen';
    }

    ul.footeraddress li p {
        font-size: small;
        font-family: diodrumen;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 22px;
        margin-right: -2%;
        margin-top: 14%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -30%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 162%;
        margin-top: 30%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: 34px;
        direction: ltr;
        margin-left: 30%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;

        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 21%;
    }

    div.tm-service-content span {
        font-size: 20px;
    }

    div.tm-education-content p {
        line-height: 24.5px;
        font-size: 16px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -3%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 18px;
        font-family: 'diodrumen';
        direction: ltr;
        left: 30%;
        position: relative;
        margin-right: -13%;
    }

    #abtusp1RU {
        text-align: justify;
        margin-top: 0px;
        font-size: 16px;
        font-family: 'diodrumen';
        direction: ltr;
        left: 30%;
        position: relative;
        margin-right: -13%;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        margin-top: 0%;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 50%;
        font-weight: bold;
    }

    p.proship {
        font-size: 23px;
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: -7%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 14px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
        margin: 0;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 26px;
        font-family: 'diodrumen';
    }

    .tm-section-title p {
        margin-bottom: -39%;
        font-size: 18px;
        margin-left: -20%;
        margin-right: -20%;
        font-family: diodrumen;
        text-align: justify;
        direction: ltr;
        font-weight: 500;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
        margin-top: -1%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 25px;
        font-size: xx-large;
        margin-right: 16%;
        margin-left: -10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1080px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 1;
        right: -82%;
        margin-top: -5%;
        width: 18%;
        height: 30px;
        font-size: medium;
        line-height: 25px;
        text-align: center;
        margin-right: 38%;
    }

    div.tm-about-image {
        margin-bottom: 0%;
        margin-bottom: 0%;
        scale: 1;
        margin-top: 0%;
        margin-left: 5%;
        margin-right: -45%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 125%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 2%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 16px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 114%;
        margin-left: -104%;
        padding-bottom: 2%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 60px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 48%;
        font-size: 25px;
        line-height: 50px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-left: 23%;
        line-height: 26px;
        text-align: justify;
        direction: ltr;
        padding-right: 0%;
        font-size: 17px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: 20%;
    }

    div.tm-about-content h2 {
        font-size: 38px;
        direction: ltr;
        margin-left: 30%;
        padding-top: 3%;
    }

    .pweight {
        margin-left: 75px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 50px;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 35%;
    }

    .notemasrafp {
        padding-top: 10%;
        margin-right: 10%;
        margin-left: 9%;
        line-height: 35px;
        padding-left: 13px;
    }

    #masrafnote {
        font-size: large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2000px) and (max-width: 2099px) {
    nav.main-menu {
        font-size: 19px;
    }

    #ColdGlazeh2RU {
        margin-right: -21%;
        margin-top: 34%;
        width: 120%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 38%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 14px;
        direction: ltr;
        margin-left: 0%;
    }

    #abtusRU {
        margin-top: -15%;
    }

    #gallerytitleRU {
        margin-left: 15%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -31%;
        width: 128%;
        font-size: 48px;
    }

    #drageeh2RU {
        margin-right: -40%;
        width: 138%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -83%;
        font-size: 50px;
        margin-top: 35%;
    }

    #cocoapistah2RU {
        margin-right: -60%;
        font-size: 52px;
        margin-top: 35%;
        width: 156%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 34%;
        width: 158%;
    }

    #compundchocoh2RU {
        margin-right: -89%;
        width: 186%;
        font-size: 62px;
        margin-top: 33%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 35%;
        width: 148%;
    }

    #concentradeimgRU {
        margin-top: -10%;
        scale: 1.3;
        margin-right: 0%;
        margin-bottom: 25%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -10%;
        margin-top: 34%;
        width: 108%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -90%;
        font-size: 56px;
        margin-top: 34%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -87%;
        margin-top: 30%;
        font-size: 56px;
    }

    #ColdGlazeh2 {
        margin-right: -20%;
        width: 117%;
    }

    #FruityPastryFillingh2RU {
        width: 132%;
        margin-right: -33%;
    }

    p#pweightRU.pweight {
        margin-left: 100px;
    }

    h3#otherproh3 {
        font-size: 24px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    h3#eduh3RU {
        font-size: 26px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: -1%;
        margin-right: 76%;
        margin-left: -63%;
        padding-bottom: 3%;
        direction: ltr;

    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -6%;
    }

    #Compoundchocolateimg {
        margin-top: 0%;
        margin-bottom: -20%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 70%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 20%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 75%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 26%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    img#socialicon.iconcontactustop {
        margin-left: -5px;
    }

    img#callicon.iconcontactustop {
        margin-left: -5px;
    }

    img#addressicon.iconcontactustop {
        margin-left: -5px;
    }

    img#emailicon.iconcontactustop {
        margin-left: -10px;
    }

    #addressspan {
        margin-left: 10%;
        font-weight: 600;
    }

    #emailspan {
        margin-left: 110px;
        font-family: 'Diodrumen';
        font-weight: 700;
    }

    #callspan {
        margin-left: 7%;
        font-weight: 600;
    }

    #socialspan {
        margin-left: 5%;
        font-weight: 600;
    }

    #chipsih2 {
        margin-right: -35%;
        width: 131%;
    }

    #drageeh2 {
        margin-right: -43%;
        width: 139%;
    }

    #cocoacoatingh2 {
        margin-right: -45%;
        width: 142%;
    }

    #cocoapistah2 {
        margin-right: -70%;
        width: 167%;
        font-size: 50px;
    }

    #compundchocoh2 {
        margin-right: -10%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    div.otherproduct h3 {
        font-size: 28px;
    }

    #chococoinsh2 {
        margin-right: -35%;
        width: 131%;
        margin-top: 36%;
    }

    div.notemasrafp ul {
        margin-left: -1%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 2%;
    }

    .footer-copyrightsocial {
        text-align: left;
        padding: 5px 0;
        text-align: center;
        margin-right: -10%;
    }

    img#emailfield.footeraddressdetail {
        margin-left: -1%;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        background-position-x: 15%;
    }

    img#aboutusimgp1.wow {
        scale: 0.95;
        margin-right: -4%;
        margin-top: 26%;
    }

    #Drageepgimg {
        margin-top: -5%;
        margin-bottom: 60%;
        margin-right: -5%;
        margin-left: 5%;
    }

    #cocoacoatingpgimg {
        margin-top: 0;
        margin-bottom: 35%;
        scale: 0.9;
        margin-right: -10%;
    }

    #velvetpgimg {
        margin-top: -5%;
        margin-bottom: -5%;
        scale: 105%;
    }

    #muffinpgimg {
        margin-top: -5%;
        margin-bottom: -5%;
        scale: 105%;
    }

    #spongepgimg {
        margin-top: -5%;
        margin-bottom: 10%;
        scale: 105%;
    }

    #WhippingCreampgimg {
        margin-top: -5%;
        margin-bottom: 5%;
        scale: 105%;
    }

    #fondantpgimg {
        margin-top: -5%;
        margin-bottom: -5%;
    }

    #coldglazepgimg {
        margin-top: -5%;
        margin-bottom: -5%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: -5%;
        margin-bottom: -5%;
    }

    div.tm-education-image {
        scale: 103%;
        margin-top: 13%;
        margin-left: 13%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        direction: ltr;
        margin-left: 14%;
    }

    div.tm-form-field input {
        width: 50%;
        padding-left: 2%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 44%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 52%;
        height: 200px;
        direction: ltr;
    }

    #Chipsipgimg {
        margin-top: 10%;
        margin-left: 5%;
        margin-right: -15%;
        margin-bottom: -45%;
        scale: 1.4;
    }

    #cocoachipsiimg {
        margin-top: -20%;
        scale: 0.9;
        margin-right: 10%;
    }

    #cocoadrageimg {
        margin-top: 5%;
        scale: 1.6;
        margin-right: -10%;
        margin-bottom: -40%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.6;
        margin-right: 0%;
        margin-bottom: -10%;
    }

    #cocoapistachioimg {
        margin-top: -5%;
        scale: 1.2;
        margin-bottom: 20%;
        margin-right: 5%;
    }

    #Hazelnutcocoaimg {
        margin-top: -5%;
        scale: 1.2;
        margin-bottom: 20%;
        margin-right: 0%;
    }

    #creamBiscuitsimg {
        margin-top: -5%;
        scale: 1.1;
        margin-bottom: 20%;
        margin-right: 5%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: 0%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -6%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -6%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -6%;
    }

    #coinchocopgimg {
        margin-top: -5%;
        margin-right: 0%;
        margin-left: -20%;
        margin-bottom: -40%;
        scale: 1;
    }

    #concentradeimg {
        margin-top: -12%;
        scale: 0.6;
        margin-right: 0%;
        margin-bottom: -10%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 0.9;
        margin-bottom: 5%;
        margin-right: 5%;
    }

    #velvetimg {
        margin-top: -35%;
        scale: 0.65;
        margin-bottom: -20%;
        margin-right: 0%;
    }

    #muffinimg {
        margin-top: -40%;
        scale: 0.5;
        margin-bottom: -25%;
        margin-right: 0%;
    }

    #spongeimg {
        margin-top: -32%;
        scale: 0.7;
        margin-bottom: -30%;
        margin-right: 0%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.8;
        margin-right: 10%;
        margin-bottom: 0%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: 0%;
        scale: 0.8;
        margin-bottom: 0%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: 0%;
        margin-bottom: 0%;
        scale: 0.8;
    }

    #DeliCreampimg {
        margin-top: -35%;
        margin-right: 0%;
        margin-bottom: 5%;
        scale: 0.8;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: -1%;
        scale: 1.1;
        margin-bottom: 5%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: 0%;
        scale: 1;
        margin-bottom: 5%;
    }

    div.row.mt-30-reverse {
        scale: 107%;
    }

    div.row.edubg {
        margin-left: -2%;
        margin-right: -2%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 555px;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    p.proship {
        text-align: center;
        padding-top: 4%;
        margin-right: 0%;
        margin-left: 0;
    }

    div.container.proshirinicont {
        padding-right: 5%;
        padding-left: 5%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5px;
        padding-left: 23%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -12%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 23%;
        direction: ltr;
    }

    #creamfillingpgimg {
        margin-top: -9%;
        margin-right: 10%;
        margin-bottom: 20%;
        scale: 0.8;
        margin-left: 5%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 23%;
        margin-left: 8px;
        background-color: white;
        font-size: 19px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
        margin-right: 6%;
        direction: ltr;
    }

    ul.footeraddress {
        margin-left: 8%;
        list-style-type: none;
        text-align: justify;
        font-size: small;
        margin-right: 0%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 89%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 17px;
        margin-right: 0%;
        direction: ltr;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 58%;
        margin-right: 19%;
    }

    div.footer {
        padding-top: 125px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 13px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 12%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xx-large;
        margin-top: -10%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 13%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 15px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 16px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -20%;
    }

    div.tm-education-content h3 {
        font-size: 28px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -55%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 28px;
        margin-right: 130%;
        margin-top: 0%;
        padding-top: 8%;
    }

    div.tm-about-content h3 {
        font-size: smaller;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 23%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: 19px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -10%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 3%;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 19px;
        margin-right: -12%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 45%;
        font-weight: 900;
        margin-bottom: -5%;
    }

    p.proship {
        font-size: 24px;
        margin-right: -3%;
        margin-left: -3%;
        text-align: justify;
        direction: ltr;
        margin-bottom: 6%;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.6;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -40%;
        font-size: 19px;
        margin-right: -21%;
        margin-left: -21%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 22%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
        margin-right: -5%;
        margin-left: 0%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1080px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        margin-right: -13%;
        margin-top: -14%;
        width: 20%;
        height: 30px;
        line-height: 25px;
        text-align: center;
        font-size: medium;
    }

    div.tm-about-image {
        margin-bottom: -5%;
        scale: 1;
        margin-top: -4%;
        margin-left: 5%;
        margin-right: -28%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 150%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 4%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 17px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: -1%;
        margin-right: 83%;
        margin-left: -62%;
        padding-bottom: 3%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 56%;
        font-size: 25px;
        line-height: 65px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-right: 20%;
        font-size: 18px;
        line-height: 26px;
        direction: ltr;
        margin-right: -8%;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: 14%;
    }

    div.tm-about-content h2 {
        font-size: 54px;
        direction: ltr;
        margin-left: 15%;
        width: 107%;
        margin-right: -10%;
    }

    .pweight {
        margin-left: 75px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 50px;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-y: 40%;
        position: relative;
        background-position-x: 23%;
    }

    .notemasrafp {
        padding-top: 10%;
    }

    #masrafnote {
        font-size: 18px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2100px) and (max-width: 2199px) {
    nav.main-menu {
        font-size: 19px;
    }

    #ColdGlazeh2RU {
        margin-top: 28%;
        margin-right: -55%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 28%
    }

    #fruitfillingh2RU {
        margin-top: 30%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 38%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 10%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -30%;
        margin-top: 28%;
    }

    #drageeh2RU {
        margin-right: -25%;
        margin-top: 26%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -81%;
        font-size: 56px;
        margin-top: 28%;
    }

    #cocoapistah2RU {
        margin-right: -60%;
        font-size: 60px;
        margin-top: 26%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 28%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 27%;
    }

    #compundchocoh2RU {
        margin-right: -88%;
        width: 186%;
        font-size: 66px;
        margin-top: 26%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 28%;
    }

    #concentradeimgRU {
        margin-top: -10%;
        scale: 1.2;
        margin-right: -20%;
        margin-bottom: 0%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -40%;
        margin-top: 26%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -90%;
        font-size: 60px;
        margin-top: 26%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -87%;
        margin-top: 26%;
        font-size: 64px;
    }

    #ColdGlazeh2 {
        margin-right: -20%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -20%;
        margin-top: 30%;
    }

    #creamfillingh2 {
        margin-top: 27%;
    }

    h3#otherproh3 {
        font-size: 24px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    h3#eduh3RU {
        font-size: 28px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 2%;
        margin-right: 96%;
        margin-left: -95%;
        padding-bottom: 7%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.8;
        margin-right: -3%;
        margin-top: -5%;
        width: 20%;
        line-height: 45px;
        height: 50px;
        font-size: smaller;
        text-align: center;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -9%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 35%;
    }

    #chipsih2 {
        margin-right: -20%;
        margin-top: 26%;
    }

    #drageeh2 {
        margin-right: -20%;
        margin-top: 27%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        margin-top: 28%;
    }

    #cocoapistah2 {
        margin-right: -28%;
        width: 125%;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 27%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 27%;
    }

    #Compoundchocolateimg {
        margin-left: -5%;
        margin-bottom: -40%;
        margin-top: 5%;
        margin-right: -15%;
    }

    #chococoinsh2 {
        margin-top: 30%;
    }

    #ConcentratedPasteh2 {
        margin-top: 28%;
    }

    #CakeGelh2 {
        margin-top: 28%;
    }

    #VelvetCakeMixh2 {
        margin-top: 28%;
    }

    #MuffinCakeMixh2 {
        margin-top: 28%;
    }

    #SpongeCakeMixh2 {
        margin-top: 28%;
    }

    #WhippingCreamh2 {
        margin-top: 30%;
    }

    #fondanth2 {
        margin-top: 28%;
    }

    #ColdGlazeh2 {
        margin-top: 28%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 28%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.otherproduct h3 {
        font-size: 30px;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #fruitfillingh2 {
        margin-top: 30%;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 62%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 15px;
    }

    div.single-widget.widget-quicklinks ul li {
        margin-left: -5%;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-left: 7%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.tm-education-image {
        scale: 85%;
        margin-top: 6%;
        margin-left: 4%;
        margin-right: -10%;
    }

    div.tm-form-field input {
        width: 46%;
        padding-left: 2%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 39%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 47%;
        height: 200px;
        direction: ltr;
    }

    #Chipsipgimg {
        margin-top: -10%;
        margin-left: 20%;
        margin-right: -35%;
        margin-bottom: -65%;
        scale: 1.3;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.4;
        margin-right: -15%;
        margin-bottom: -30%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1.4;
        margin-right: -5%;
        margin-bottom: -25%;
    }

    #cocoapistachioimg {
        margin-top: -15%;
        scale: 1.2;
        margin-bottom: -10%;
        margin-right: -15%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.3;
        margin-bottom: -5%;
        margin-right: -20%;
    }

    #creamBiscuitsimg {
        margin-top: -15%;
        scale: 1.1;
        margin-bottom: -10%;
        margin-right: -10%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -10%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -16%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -16%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -16%;
    }

    #coinchocopgimg {
        margin-top: -10%;
        margin-right: -25%;
        margin-left: 0%;
        scale: 1;
        margin-bottom: -55%;
    }

    #concentradeimg {
        margin-top: -12%;
        scale: 0.6;
        margin-right: -20%;
        margin-bottom: -40%;
    }

    #cakegelimg {
        margin-top: -35%;
        scale: 1;
        margin-bottom: -25%;
        margin-right: -15%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -45%;
        margin-right: -20%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -55%;
        margin-right: -15%;
    }

    #spongeimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -40%;
        margin-right: -20%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.8;
        margin-right: -10%;
        margin-bottom: -15%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: -20%;
        scale: 0.85;
        margin-bottom: -25%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: -20%;
        scale: 0.8;
        margin-bottom: -20%;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: -15%;
        scale: 0.9;
        margin-bottom: -25%;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: -10%;
        scale: 1.2;
        margin-bottom: -20%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: -10%;
        scale: 1.1;
        margin-bottom: -20%;
    }

    div.row.mt-30-reverse {
        scale: 89%;
    }

    div.row.edubg {
        margin-left: -7%;
        margin-right: -7%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 610px;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: -30px;
        padding-left: 23%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        padding-left: 10px;
        margin-left: 21%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 5%;
        margin-right: -30%;
    }

    #creamfillingpgimg {
        margin-top: -20%;
        margin-right: -20%;
        scale: 0.7;
        margin-left: 5%;
        margin-bottom: -25%;
    }

    ul.footeraddress {
        margin-left: 0%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 101%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 360px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 5%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 55%;
        margin-right: 21%;
    }

    div.footer {
        padding-top: 137px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -10%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: 44px;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 15px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 17px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -20%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 157%;
        margin-top: -10%;
        padding-top: 14%;
    }

    div.tm-about-content h3 {
        font-size: larger;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 22%;
    }

    div.tm-service-content span {
        font-size: 24px;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: 19px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -7%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 19px;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 50%;
        font-weight: 900;
    }

    p.proship {
        font-size: 24px;
        margin-right: 6%;
        margin-left: 6%;
        margin-bottom: -5%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 16px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 22px;
        margin-right: -21%;
        margin-left: -21%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
        margin-right: -10%;
        margin-left: -10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1131px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.8;
        margin-right: -3%;
        margin-top: -9%;
        width: 20%;
        line-height: 45px;
        height: 50px;
        font-size: smaller;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: 9%;
        margin-left: 5%;
        margin-right: -25%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 155%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 5%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 2%;
        margin-right: 102%;
        margin-left: -95%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 48%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-right: 9%;
        font-size: 20px;
        direction: ltr;
        text-align: justify;
        line-height: 26px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -7%;
    }

    div.tm-about-content h2 {
        font-size: 55px;
        direction: ltr;
        margin-left: 2%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 92%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
    }

    .notemasrafp {
        padding-top: 10%;
        margin-left: 3%;
        direction: ltr;
        font-size: 18px;
        padding-right: 4%;
    }

    #masrafnote {
        font-size: 18px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2200px) and (max-width: 2299px) {
    nav.main-menu {
        font-size: 19px;
    }

    #ColdGlazeh2RU {
        margin-top: 30%;
        margin-right: -55%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 30%
    }

    #fruitfillingh2RU {
        margin-top: 30%;
    }

    p.footer-copyright span {
        font-size: 20px;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 38%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -25%;
        margin-top: 30%;
    }

    #drageeh2RU {
        margin-right: -40%;
        margin-top: 28%;
        font-size: 64px;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -73%;
        font-size: 58px;
        margin-top: 28%;
    }

    #cocoapistah2RU {
        margin-right: -60%;
        font-size: 60px;
        margin-top: 29%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 30%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 30%;
    }

    #compundchocoh2RU {
        margin-right: -80%;
        width: 186%;
        font-size: 66px;
        margin-top: 27%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 30%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1;
        margin-right: -5%;
        margin-bottom: 0%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -40%;
        margin-top: 28%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 8%;
        margin-right: -82%;
        font-size: 62px;
        margin-top: 26%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -76%;
        margin-top: 28%;
        font-size: 64px;
    }

    #ColdGlazeh2 {
        margin-right: -20%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -75%;
        margin-top: 28%;
        font-size: 66px;
    }

    h3#otherproh3 {
        font-size: 26px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.2;
    }

    .tm-parallax.parallaxRU {
        height: 310px;
    }

    #creamfillingh2 {
        margin-top: 30%;
    }

    #creamfillingpgimg {
        scale: 0.85;
        margin-right: -10%;
        margin-left: 10%;
        margin-top: -15%;
        margin-bottom: -10%;
    }

    h3#eduh3RU {
        font-size: 28px;
    }

    p#techpRU {
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: -9%;
        margin-right: 88%;
        margin-left: -94%;
        padding-bottom: 4%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -12%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -20%;
        margin-top: 30%;
    }

    #drageeh2 {
        margin-right: -20%;
        margin-top: 29%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        margin-top: 30%;
    }

    #cocoapistah2 {
        margin-right: -20%;
        width: 125%;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 29%;
    }

    #BiscuitsCreamh2 {
        margin-top: 30%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 30%;
    }

    #Compoundchocolateimg {
        margin-left: -20%;
        margin-bottom: -25%;
        margin-top: 5%;
        margin-right: 20%;
    }

    #chococoinsh2 {
        margin-top: 28%;
    }

    #ConcentratedPasteh2 {
        margin-top: 30%;
    }

    #CakeGelh2 {
        margin-top: 30%;
    }

    #VelvetCakeMixh2 {
        margin-top: 30%;
    }

    #MuffinCakeMixh2 {
        margin-top: 30%;
    }

    #SpongeCakeMixh2 {
        margin-top: 30%;
    }

    #WhippingCreamh2 {
        margin-top: 30%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    #fondanth2 {
        margin-top: 30%;
    }

    #ColdGlazeh2 {
        margin-top: 30%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 30%;
    }

    div.otherproduct h3 {
        font-size: 31px;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
    }

    #fruitfillingh2 {
        margin-top: 30%;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: -4%;
        scale: 1;
        margin-bottom: -20%;
    }

    div.tm-funfact-content div {
        margin-right: 5px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 62%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 16px;
    }

    div.row.edubg {
        margin-left: -10%;
        margin-right: -10%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 625px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-left: 5%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    nav.tm-navigation {
        margin-left: -5%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 12%;
        margin-left: 10%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 39%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 47%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 44%;
        padding-left: 2%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 37%;
    }

    #Chipsipgimg {
        margin-top: -10%;
        scale: 1.6;
        margin-right: -30%;
        margin-left: 35%;
        margin-bottom: -40%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.1;
        margin-right: -5%;
        margin-bottom: -25%;
    }

    #cocoacoatingpgimg {
        margin-top: 15%;
        margin-bottom: 10%;
        margin-right: -15%;
        margin-left: 30%;
    }

    #cocoapistachioimg {
        margin-top: -20%;
        scale: 1.1;
        margin-bottom: -10%;
        margin-right: 0%;
    }

    #Hazelnutcocoaimg {
        margin-top: -20%;
        scale: 1;
        margin-bottom: -10%;
        margin-right: -5%;
    }

    #creamBiscuitsimg {
        margin-top: -20%;
        scale: 0.95;
        margin-bottom: -10%;
        margin-right: 0%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -28%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -33%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -33%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -33%;
    }

    #coinchocopgimg {
        scale: 1.6;
        margin-top: 15%;
        margin-right: -5%;
        margin-bottom: -35%;
    }

    #concentradeimg {
        margin-top: -10%;
        scale: 0.5;
        margin-right: -5%;
        margin-bottom: -40%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 0.8;
        margin-right: 0%;
        margin-bottom: -25%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.6;
        margin-bottom: -45%;
        margin-right: -5%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.45;
        margin-bottom: -50%;
        margin-right: -5%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.55;
        margin-bottom: -40%;
        margin-right: -5%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.7;
        margin-right: 0%;
        margin-bottom: -15%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -5%;
        scale: 0.7;
        margin-bottom: -25%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -5%;
        scale: 0.7;
        margin-bottom: -25%;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: -5%;
        scale: 0.7;
        margin-bottom: -25%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -2%;
        scale: 0.9;
        margin-bottom: -25%;
    }

    div.tm-shop-products {
        scale: 106%;
    }

    div.row.mt-30-reverse {
        scale: 92%;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 0px;
        padding-left: 21%;
        padding-right: 10%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 0px;
        padding-left: 21%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 101%;
        text-align: -webkit-center;
        margin-right: -1%;
    }

    #contactuscadrin {
        background-color: white;
        height: 360px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 5%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 60%;
        margin-right: 18%;
    }

    div.footer {
        padding-top: 141px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 10%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 6%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 16px;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
        margin-right: -4%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 36px;
        margin-right: 150%;
        margin-top: -10%;
        padding-top: 7%;
        padding-bottom: 12%;
    }

    div.tm-about-content h3 {
        font-size: 36px;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 24%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 30.5px;
        font-size: 22px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -13%;
        scale: 0.7;
        margin-top: 4%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 22px;
        margin-right: -15%;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 50%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 5%;
        margin-left: 5%;
        direction: ltr;
        text-align: justify;
        margin-bottom: -4%;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;

    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 22px;
        margin-right: -21%;
        margin-left: -21%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: 22px;
        margin-left: -15%;
        direction: ltr;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1200px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 1;
        margin-left: 96%;
        margin-top: -7%;
        width: 20%;
        height: 43px;
        font-size: 22px;
        text-align: center;
        line-height: 40px;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.3;
        margin-top: 18%;
        margin-left: 25%;
        margin-right: -38%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 162%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 4%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: -9%;
        margin-right: 92%;
        margin-left: -94%;
        padding-bottom: 9%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        padding-right: 6%;
        margin-right: 9%;
        direction: ltr;
        font-size: 20px;
        line-height: 26px;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -10%;
    }

    div.tm-about-content h2 {
        font-size: 55px;
        direction: ltr;
        margin-left: 9%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
        margin-left: -5%;
    }

    .notemasrafp {
        padding-top: 10%;
        margin-left: 3%;
        direction: ltr;
        padding-right: 5%;
    }

    #masrafnote {
        font-size: x-large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2300px) and (max-width: 2399px) {
    nav.main-menu {
        font-size: 19px;
    }

    #ColdGlazeh2RU {
        margin-top: 34%;
        margin-right: -55%;
    }

    p.footer-copyright span {
        font-size: 21px;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 40%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -30%;
    }

    #drageeh2RU {
        margin-right: -20%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -73%;
        font-size: 58px;
        margin-top: 34%;
    }

    #cocoapistah2RU {
        margin-right: -60%;
        font-size: 60px;
        margin-top: 35%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
    }

    #compundchocoh2RU {
        margin-right: -80%;
        width: 186%;
        font-size: 66px;
        margin-top: 32%;
    }

    #coinchoco1img {
        margin-top: -90%;
        scale: 0.4;
        margin-right: -55%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 34%;
    }

    #concentradeimgRU {
        margin-top: 0%;
        scale: 1.2;
        margin-right: -45%;
        margin-bottom: 10%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -40%;
        margin-top: 34%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -82%;
        font-size: 66px;
        margin-top: 32%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -76%;
        margin-top: 34%;
        font-size: 64px;
    }

    #ColdGlazeh2 {
        margin-right: -15%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -75%;
        margin-top: 35%;
        font-size: 66px;
    }

    h3#otherproh3 {
        font-size: 26px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    div.tm-education-image {
        scale: 109%;
        margin-top: 14%;
        margin-left: 15%;
        margin-right: 2%;
    }

    h3#eduh3RU {
        font-size: 26px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 94%;
        margin-left: -92%;
        padding-bottom: 7%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -12%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #cocoapistah2 {
        margin-right: -38%;
        width: 145%;
    }

    #Compoundchocolateimg {
        margin-left: 0%;
        margin-bottom: -20%;
        margin-top: 0%;
        margin-right: 10%;
    }

    #velvetimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -40%;
        margin-right: -5%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.otherproduct h3 {
        font-size: 32px;
    }

    #FruityPastryFillingh2 {
        margin-left: -6%;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 65%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 68%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    nav.tm-navigation {
        margin-left: -5%;
    }

    #emailfield {
        margin-left: -1%;
    }

    #velvetpgimg {
        margin-top: 0;
        scale: 1;
        margin-right: -30%;
        margin-left: 30%;
    }

    #DeliCreampimg {
        margin-top: -25%;
        margin-right: -40%;
        scale: 0.8;
        margin-bottom: -20%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 5%;
        margin-right: 10%;
        margin-left: -5%;
        scale: 1.3;
        margin-bottom: -5%;
    }

    #fruitfillingpgimg {
        margin-top: -15%;
        scale: 1.3;
        margin-left: -10%;
        margin-right: 10%;
        margin-bottom: 0%;
    }

    #creamfillingpgimg {
        margin-top: -10%;
        scale: 0.85;
        margin-right: 0%;
        margin-left: 10%;
        margin-bottom: -5%;
    }

    div.tm-form-field input {
        width: 46%;
        padding-left: 2%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 40%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 48%;
        height: 200px;
        direction: ltr;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 37%;
    }

    #Chipsipgimg {
        margin-top: -5%;
        scale: 1.4;
        margin-right: -30%;
        margin-left: 30%;
        margin-bottom: -50%;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.4;
        margin-right: -40%;
        margin-bottom: -25%;
    }

    #cocoacoatingpgimg {
        margin-top: 5%;
        margin-bottom: 15%;
        margin-right: 15%;
        margin-left: -15%;
        scale: 1;
    }

    #cocoapistachioimg {
        margin-top: -15%;
        scale: 1.3;
        margin-bottom: 0%;
        margin-right: -40%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.1;
        margin-bottom: 0%;
        margin-right: -45%;
    }

    #creamBiscuitsimg {
        margin-top: -15%;
        scale: 1.1;
        margin-bottom: 0%;
        margin-right: -40%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -17%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -23%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -23%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -23%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #coinchocopgimg {
        scale: 1;
        margin-top: 0;
        margin-right: 15%;
        margin-left: -30%;
        margin-bottom: -50%;
    }

    #concentradeimg {
        margin-top: -5%;
        scale: 0.6;
        margin-right: -45%;
        margin-bottom: -30%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 0.9;
        margin-right: -40%;
        margin-bottom: -15%;
    }

    #muffinimg {
        margin-top: -25%;
        scale: 0.65;
        margin-bottom: -30%;
        margin-right: -23%;
    }

    #muffinimg {
        margin-top: -40%;
        scale: 0.6;
        margin-bottom: -45%;
        margin-right: -40%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -30%;
        margin-right: -45%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.8;
        margin-right: -30%;
        margin-bottom: -5%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -40%;
        scale: 0.8;
        margin-bottom: -15%;
    }

    #ColdGlazepimg {
        margin-top: -25%;
        margin-right: -40%;
        scale: 0.8;
        margin-bottom: -20%;
    }

    .notemasraf {
        padding-right: 24%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.row.edubg {
        margin-left: -3%;
        margin-right: -3%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 570px;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -30%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 25px;
        padding-left: 21%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 22%;
        direction: ltr;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 99%;
        text-align: -webkit-center;
        margin-right: 0%;
    }

    #contactuscadrin {
        background-color: white;
        height: 360px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 3%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 60%;
        margin-right: 18%;
    }

    div.footer {
        padding-top: 147px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -31%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 5%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 5%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 30%;
        scale: 1.1;
        margin-right: -35%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
        margin-right: -30px;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 155%;
        margin-top: 0%;
        padding-top: 8%;
    }

    div.tm-about-content h3 {
        font-size: larger;
        direction: ltr;
        margin-left: -30%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 25%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 26.5px;
        font-size: 20px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -13%;
        scale: 0.7;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 22px;
        margin-left: -30%;
        margin-right: -10%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 50%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 22px;
        margin-right: -19%;
        margin-left: -19%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1508px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 1;
        margin-right: -10%;
        margin-top: -12%;
        width: 20%;
        height: 40px;
        font-size: 20px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.3;
        margin-top: 14%;
        margin-left: -15%;
        margin-right: 20%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 163%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 4%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 95%;
        margin-left: -90%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 65px;
        line-height: 40px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        font-size: 20px;
        direction: ltr;
        margin-right: 10%;
        line-height: 26px;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -7%;
    }

    div.tm-about-content h2 {
        font-size: 55px;
        direction: ltr;
        margin-left: -7%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 83%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
        margin-left: -5%;
    }

    .notemasrafp {
        padding-top: 10%;
        margin-left: 5%;
        direction: ltr;
    }

    #masrafnote {
        font-size: 20px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2400px) and (max-width: 2499px) {
    nav.main-menu {
        font-size: 19px;
    }

    #ColdGlazeh2RU {
        margin-top: 32%;
        margin-right: -55%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 40%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -40%;
        font-size: 58px;
    }

    #drageeh2RU {
        margin-right: -35%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -73%;
        font-size: 58px;
        margin-top: 34%;
    }

    #cocoapistah2RU {
        margin-right: -60%;
        font-size: 60px;
        margin-top: 35%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
    }

    #compundchocoh2RU {
        margin-right: -80%;
        width: 186%;
        font-size: 66px;
        margin-top: 32%;
    }

    #coinchoco1img {
        margin-top: -90%;
        scale: 0.4;
        margin-right: -55%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 34%;
    }

    #concentradeimgRU {
        margin-top: 0%;
        scale: 1.2;
        margin-right: -45%;
        margin-bottom: 10%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -40%;
        margin-top: 30%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -82%;
        font-size: 66px;
        margin-top: 32%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -80%;
        margin-top: 34%;
        font-size: 64px;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -75%;
        margin-top: 35%;
        font-size: 66px;
    }

    h3#otherproh3 {
        font-size: 28px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    div.tm-education-image {
        scale: 106%;
        margin-top: 14%;
        margin-left: 13%;
        margin-right: 4%;
    }

    h3#eduh3RU {
        font-size: 27px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 1%;
        margin-right: 93%;
        margin-left: -93%;
        padding-bottom: 4%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 1;
        margin-right: 0%;
        margin-top: -18%;
        width: 20%;
        height: 45px;
        font-size: 20px;
        text-align: center;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -12%;
    }

    div.tm-form-field textarea {
        width: 46%;
        height: 200px;
        direction: ltr;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 12%;
    }

    #callspan {
        margin-left: 7%;
    }

    #drageeh2 {
        margin-right: -29%;
        width: 135%;
        margin-top: 32%;
    }

    #cocoacoatingh2 {
        margin-right: -35%;
        width: 140%;
        font-size: 60px;
        margin-top: 34%;
    }

    #cocoacoatingpgimg {
        margin-top: 0;
        margin-bottom: 5%;
        margin-right: 5%;
        margin-left: -25%;
    }

    #cocoapistah2 {
        margin-right: -90%;
        width: 195%;
        font-size: 58px;
    }

    #Compoundchocolateimg {
        margin-left: -15%;
        margin-bottom: -15%;
        margin-top: 0%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.tm-funfact-content h5 {
        font-size: 16px;
        padding-left: 2px;
    }

    div.tm-funfact-content div {
        margin-right: 1%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 62%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 64%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 16px;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 5%;
        margin-right: 5%;
        margin-left: -5%;
        scale: 1.2;
        margin-bottom: 0%;
    }

    #fruitfillingpgimg {
        margin-top: 0%;
        scale: 1.6;
        margin-right: 15%;
        margin-left: 0%;
        margin-bottom: 5%;
    }

    #creamfillingpgimg {
        margin-top: -10%;
        scale: 0.8;
        margin-right: -5%;
        margin-left: 5%;
        margin-bottom: -5%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    div.tm-form-field input {
        width: 45%;
        padding-left: 2%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 37%;
    }

    #Chipsipgimg {
        margin-top: 5%;
        margin-right: -25%;
        margin-left: 40%;
        margin-bottom: -40%;
        scale: 1.7;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.3;
        margin-right: -45%;
        margin-bottom: -20%;
    }

    #cocoacoatingimg {
        margin-top: 0%;
        scale: 1;
        margin-right: -25%;
    }

    #cocoapistachioimg {
        margin-top: -10%;
        scale: 1.2;
        margin-bottom: 0%;
        margin-right: -40%;
    }

    #Hazelnutcocoaimg {
        margin-top: -15%;
        scale: 1.1;
        margin-bottom: 5%;
        margin-right: -45%;
    }

    #creamBiscuitsimg {
        margin-top: -10%;
        scale: 1.1;
        margin-bottom: 0%;
        margin-right: -40%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -25%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -30%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -30%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -30%;
    }

    #coinchocopgimg {
        margin-top: -10%;
        margin-right: 10%;
        margin-bottom: -55%;
        scale: 0.9;
        margin-left: -40%;
    }

    #concentradeimg {
        margin-top: -10%;
        scale: 0.5;
        margin-right: -50%;
        margin-bottom: -25%;
    }

    #cakegelimg {
        margin-top: -25%;
        scale: 1;
        margin-right: -40%;
        margin-bottom: -15%;
    }

    #velvetimg {
        margin-top: -30%;
        scale: 0.7;
        margin-bottom: -40%;
        margin-right: -40%;
    }

    #muffinimg {
        margin-top: -40%;
        scale: 0.6;
        margin-bottom: -45%;
        margin-right: -45%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -30%;
        margin-right: -45%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.8;
        margin-right: -30%;
        margin-bottom: -5%;
    }

    #Fondantpimg {
        margin-top: -25%;
        margin-right: -40%;
        scale: 0.8;
        margin-bottom: -20%;
    }

    #ColdGlazepimg {
        margin-top: -25%;
        margin-right: -45%;
        scale: 0.8;
        margin-bottom: -15%;
    }

    #DeliCreampimg {
        margin-top: -25%;
        margin-right: -40%;
        scale: 0.8;
        margin-bottom: -15%;
    }

    div.row.edubg {
        margin-left: -5%;
        margin-right: -5%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 584px;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 10%;
        margin-right: -30%;
    }

    .notemasraf {
        padding-right: 19%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 10px;
        padding-left: 23%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -8%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 23%;
        padding-left: 10px;
        direction: ltr;

    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 102%;
        text-align: -webkit-center;
        margin-right: -1%;
    }

    #contactuscadrin {
        background-color: white;
        height: 360px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 3%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 57%;
        margin-right: 20%;
    }

    div.footer {
        padding-top: 153px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -28%;
    }

    div.tm-blog-content {
        margin-right: 30%;
        margin-left: 30%;
        margin-top: 10%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 5%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 31%;
        margin-right: -33%;
        scale: 1.1;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 17px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 158%;
        margin-top: 0%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: larger;
        direction: ltr;
        margin-left: -30%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;

        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 26%;
    }

    div.tm-service-content span {
        font-size: 24px;
    }

    div.tm-education-content p {
        line-height: 29.5px;
        font-size: 21px;
        margin-left: -5%;
        direction: ltr;
    }

    div.header-logo {
        margin-right: 0%;
        margin-left: -12%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 22px;
        margin-left: -30%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 50%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 22px;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 17%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
        margin-right: -5%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1470px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 1;
        margin-right: 0%;
        margin-top: -5%;
        width: 20%;
        height: 45px;
        font-size: 20px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.3;
        margin-top: 12%;
        margin-left: -20%;
        margin-right: 21%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 162%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 4%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 1%;
        margin-right: 95%;
        margin-left: -93%;
        padding-bottom: 10%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 45px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        font-size: 18px;
        margin-right: 10%;
        direction: ltr;
        line-height: 30px;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -10%;
    }

    div.tm-about-content h2 {
        font-size: 65px;
        direction: ltr;
        margin-left: -7%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 83%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
        margin-left: -5%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 7%;
        padding-right: 10%;
        font-size: 18px;
    }

    #masrafnote {
        font-size: 18px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2500px) and (max-width: 2560px) {
    nav.main-menu {
        font-size: 20px;
    }

    #ColdGlazeh2RU {
        margin-right: -55%;
    }

    #emailicon {
        margin-left: -1%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 38%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 10%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -70%;
        font-size: 58px;
        margin-top: 38%;
    }

    #drageeh2RU {
        margin-right: -65%;
        font-size: 62px;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -73%;
        font-size: 58px;
        margin-top: 30%;
    }

    #cocoapistah2RU {
        margin-right: -60%;
        font-size: 60px;
        margin-top: 36%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -70%;
        margin-top: 34%;
    }

    #BiscuitsCreamh2RU {
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -80%;
        width: 186%;
        font-size: 66px;
        margin-top: 34%;
    }

    #coinchoco1img {
        margin-top: -90%;
        scale: 0.4;
        margin-right: -55%;
    }

    #coinchocoimg {
        margin-top: -20%;
        margin-bottom: -6%;
        margin-right: -35%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 34%;
    }

    #concentradeimgRU {
        margin-top: 0%;
        scale: 1.2;
        margin-right: -45%;
        margin-bottom: 10%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -45%;
        margin-top: 34%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -82%;
        font-size: 66px;
        margin-top: 36%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -80%;
        margin-top: 34%;
        font-size: 64px;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -75%;
        margin-top: 35%;
        font-size: 66px;
    }

    h3#otherproh3 {
        font-size: 28px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    h3#eduh3RU {
        font-size: 26px;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 1;
        margin-right: -21%;
        margin-top: -4%;
        width: 18%;
        height: 45px;
        font-size: 19px;
        line-height: 40px;
        font-weight: 900;
        text-align: center;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -10%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 12%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -45%;
        width: 151%;
    }

    #drageeh2 {
        margin-right: -54%;
        width: 160%;
        font-size: 62px;
    }

    #cocoacoatingh2 {
        margin-right: -60%;
        width: 165%;
        font-size: 60px;
    }

    #cocoapistah2 {
        margin-right: -90%;
        width: 195%;
        font-size: 58px;
    }

    #Compoundchocolateimg {
        margin-right: 20%;
        margin-left: -25%;
        margin-bottom: -30%;
    }

    #chococoinsh2 {
        margin-right: -45%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    #FruityPastryFillingh2 {
        margin-right: -8%;
        margin-left: -6%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    #creamfillingh2 {
        margin-top: 35%;
        margin-left: -5%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 62%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    nav.tm-navigation {
        margin-left: -5%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 62%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    .widget-quicklinks ul li a {
        position: relative;
        text-decoration: none;
        font-size: 16px;
    }

    p.footer-copyright span {
        font-size: 14px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        background-position-x: 12%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    img#emailfield.footeraddressdetail {
        margin-left: -10px;
    }

    div.row.mt-30-reverse {
        margin-top: -30px;
        margin-bottom: 25px;
        scale: 103%;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.3;
        margin-right: -40%;
        margin-bottom: -25%;
    }

    #cocoacoatingimg {
        margin-top: -2%;
        scale: 1;
        margin-right: 0%;
    }

    #cocoapistachioimg {
        margin-top: -10%;
        scale: 1.1;
        margin-bottom: 5%;
        margin-right: -40%;
    }

    #Hazelnutcocoaimg {
        margin-top: -10%;
        scale: 1.1;
        margin-bottom: 5%;
        margin-right: -45%;
    }

    #creamBiscuitsimg {
        margin-top: -10%;
        scale: 1;
        margin-bottom: 0%;
        margin-right: -40%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -25%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -30%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -30%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -30%;
    }

    #concentradeimg {
        margin-top: -4%;
        scale: 0.5;
        margin-right: -45%;
        margin-bottom: -30%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 0.9;
        margin-right: -45%;
        margin-bottom: -10%;
    }

    #muffinimg {
        margin-top: -35%;
        scale: 0.5;
        margin-bottom: -40%;
        margin-right: -45%;
    }

    #ColdGlazepimg {
        margin-top: -25%;
        margin-right: -45%;
        scale: 0.8;
        margin-bottom: -10%;
    }

    #fruitypastryfiilingimg {
        margin-top: -20%;
        margin-right: -30%;
    }

    #fruitfillingimg {
        margin-top: -20%;
        margin-right: -20%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -45%;
        scale: 0.8;
        margin-bottom: -10%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.7;
        margin-right: -30%;
        margin-bottom: -5%;
    }

    div.tm-education-content {
        margin-right: 15%;
        text-align: justify;
        margin-top: 11%;
        margin-left: 5%;
    }

    div.tm-education-image {
        scale: 94%;
        margin-top: 9%;
        margin-left: 9%;
        margin-right: -8%;
    }

    #fruitfillingpgimg {
        margin-top: -3%;
        margin-left: 0%;
        margin-right: 15%;
        margin-bottom: 10%;
        scale: 1.9;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 5%;
        margin-right: 15%;
        margin-left: 10%;
        margin-bottom: 10%;
        scale: 1.8;
    }

    #creamfillingpgimg {
        margin-top: 5%;
        margin-right: 15%;
        margin-left: 25%;
        margin-bottom: 15%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #Chipsipgimg {
        margin-top: 0%;
        scale: 1.5;
        margin-right: -25%;
        margin-left: 30%;
        margin-bottom: -40%;
    }

    #cocoacoatingpgimg {
        margin-top: 0%;
        margin-bottom: 15%;
        margin-right: -35%;
        margin-left: 10%;
    }

    #coinchocopgimg {
        scale: 1.2;
        margin-top: 5%;
        margin-right: 40%;
        margin-left: -55%;
        margin-bottom: -50%;
    }

    #velvetimg {
        margin-top: -30%;
        scale: 0.7;
        margin-bottom: -35%;
        margin-right: -45%;
    }

    #spongeimg {
        margin-top: -30%;
        scale: 0.7;
        margin-bottom: -30%;
        margin-right: -45%;
    }

    #DeliCreampimg {
        margin-top: -25%;
        margin-right: -45%;
        scale: 0.75;
        margin-bottom: -15%;
    }

    div.row.edubg {
        margin-left: -4%;
        margin-right: -4%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 570px;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 36%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 44%;
        height: 200px;
        direction: ltr;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 33%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    ul.footeraddress {
        margin-left: 4%;
        list-style-type: none;
        text-align: justify;
        font-size: small;
        margin-right: 0%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        text-align: left;
        padding: 5px 0;
        text-align: center;
        margin-left: 12%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 15px;
        padding-left: 26%;
        padding-right: 28%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 101%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 370px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 4%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 72%;
        margin-right: 12%;
    }

    div.footer {
        padding-top: 157px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 26%;
        margin-right: -45%;
        scale: 0.945;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 13px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 18px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 16px;
        margin-left: -10%;
        margin-right: -20%;
    }

    div.tm-education-content h3 {
        font-size: 30px;
        margin-right: -6%;
        margin-top: -1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -70%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 141%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: larger;
        direction: ltr;
        margin-left: -6%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: -30%;
        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.73;
        margin-top: 8%;
        margin-bottom: 25%;
    }

    div.tm-service-content span {
        font-size: 22px;
    }

    div.tm-education-content p {
        line-height: 30.5px;
        font-size: 20px;
        direction: ltr;
        text-align: justify;
    }

    div.header-logo {
        margin-left: -2%;
        scale: 0.7;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 19px;
        margin-left: -6%;
        line-height: 31px;
        direction: ltr;
        margin-right: -20%;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 15%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 50%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        font-size: 24px;
        margin-right: -24%;
        margin-left: -24%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 35px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1340px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 1;
        margin-right: -21%;
        margin-top: -7%;
        width: 18%;
        height: 45px;
        font-size: 19px;
        line-height: 40px;
        font-weight: 900;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 7%;
        scale: 1.3;
        margin-top: 9%;
        margin-left: -38%;
        margin-right: 29%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 150%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 2%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 19px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 85%;
        margin-left: -71%;
        padding-bottom: 10%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        font-size: 20px;
        line-height: 26px;
        direction: ltr;
        margin-right: 0%;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -3%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: -6%;
        margin-right: -20%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 5%;
    }

    .notemasrafp {
        padding-top: 10%;
        font-size: 20px;
        direction: ltr;
        margin-left: 12%;
    }

    #masrafnote {
        font-size: 20px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

    .prolistitemspan {
        margin-left: 26%;
        padding-left: 10px;
    }
}

@media only screen and (min-width: 2561px) and (max-width: 2599px) {
    nav.main-menu {
        font-size: 20px;
    }

    #ColdGlazeh2RU {
        margin-top: 28%;
        margin-right: -55%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 28%
    }

    #fruitfillingh2RU {
        margin-top: 30%;
        margin-left: -7%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 36%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -65%;
        margin-top: 28%;
        font-size: 60px;
        margin-left: -6%;
    }

    #drageeh2RU {
        margin-right: -55%;
        margin-top: 26%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -73%;
        font-size: 58px;
        margin-top: 30%;
    }

    #cocoapistah2RU {
        margin-right: -55%;
        font-size: 60px;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 28%;
    }

    #BiscuitsCreamh2RU {
        margin-top: 30%;
    }

    #compundchocoh2RU {
        margin-right: -80%;
        width: 186%;
        font-size: 66px;
        margin-top: 30%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 28%;
    }

    #concentradeimgRU {
        margin-top: 10%;
        scale: 2.7;
        margin-right: -65%;
        margin-bottom: 5%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -40%;
        margin-top: 26%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -82%;
        font-size: 66px;
        margin-top: 28%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -80%;
        margin-top: 28%;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
        margin-top: 22%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -70%;
        margin-top: 30%;
    }

    h3#otherproh3 {
        font-size: 30px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    div.tm-education-content {
        margin-right: 15%;
        text-align: justify;
        margin-top: 12%;
        margin-left: 10%;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 8%;
        margin-left: 10%;
        margin-right: -10%;
    }

    h3#eduh3RU {
        font-size: 28px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 101%;
        margin-left: -88%;
        padding-bottom: 4%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -12%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 7%;
    }

    #emailicon {
        margin-left: -1%;
    }

    #chipsih2 {
        margin-right: -38%;
        width: 143%;
        margin-top: 28%;
    }

    #drageeh2 {
        margin-right: -46%;
        width: 152%;
        margin-top: 28%;
    }

    #cocoacoatingh2 {
        margin-right: -50%;
        width: 155%;
        font-size: 60px;
        margin-top: 30%;
    }

    #cocoapistah2 {
        margin-right: -90%;
        width: 195%;
        font-size: 60px;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlable {
        margin-top: 28%;
    }

    #BiscuitsCreamh2 {
        margin-top: 28%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 28%;
    }

    #Compoundchocolateimg {
        margin-left: -10%;
        margin-right: 5%;
        margin-bottom: -35%;
        margin-top: 10%;
    }

    #chococoinsh2 {
        margin-right: -40%;
        margin-top: 28%;
    }

    #ConcentratedPasteh2 {
        margin-top: 30%;
    }

    #CakeGelh2 {
        margin-top: 30%;
    }

    #VelvetCakeMixh2 {
        margin-top: 30%;
    }

    #MuffinCakeMixh2 {
        margin-top: 30%;
    }

    #SpongeCakeMixh2 {
        margin-top: 30%;
    }

    #WhippingCreamh2 {
        margin-top: 30%;
    }

    #fondanth2 {
        margin-top: 30%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    #ColdGlazeh2 {
        margin-top: 30%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 30%;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
        margin-left: -6%;
    }

    #fruitfillingh2 {
        margin-top: 30%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    #creamfillingh2 {
        margin-top: 30%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 12%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 62%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 36%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 44%;
        height: 200px;
        direction: ltr;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 38%;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: -33%;
    }

    div.row.edubg {
        margin-left: -10%;
        margin-right: -10%;
        background-size: 100%;
        background-repeat: no-repeat;
        height: 630px;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -30%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
        margin-right: -10px;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    #creamfillingpgimg {
        scale: 0.9;
        margin-right: 10%;
        margin-left: 5%;
        margin-top: -5%;
        margin-bottom: -5%;
    }

    #Chipsipgimg {
        margin-bottom: -10%;
    }

    #cocoacoatingpgimg {
        scale: 1;
    }

    #concentradepgimg {
        margin-top: 0%;
        margin-right: 25%;
        margin-bottom: 25%;
    }

    #cakegelpgimg {
        margin-right: 15%;
        margin-left: 15%;
        margin-bottom: 25%;
    }

    #velvetpgimg {
        margin-top: 10%;
        margin-right: 20%;
        margin-left: 10%;
        margin-bottom: 30%;
    }

    #muffinpgimg {
        margin-top: 10%;
        margin-right: 20%;
        margin-left: 15%;
        margin-bottom: 30%;
    }

    #spongepgimg {
        margin-top: 10%;
        margin-right: 20%;
        margin-left: 10%;
        margin-bottom: 30%;
    }

    #WhippingCreampgimg {
        margin-top: 10%;
        margin-right: 32%;
        margin-left: 0%;
        margin-bottom: 25%;
    }

    #fondantpgimg {
        margin-top: 5%;
        margin-right: 5%;
        margin-left: 15%;
        margin-bottom: -5%;
        scale: 1.3;
    }

    #coldglazepgimg {
        margin-top: 5%;
        margin-right: 5%;
        margin-left: 20%;
        margin-bottom: 0%;
        scale: 1.3;
    }

    div.notemasraf p {
        text-align: justify;
    }

    #delipgimg {
        scale: 1.4;
        margin-top: 10%;
        margin-right: 15%;
        margin-left: 10%;
        margin-bottom: -5%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 10%;
        margin-right: 40%;
        margin-left: -20%;
        margin-bottom: 9%;
        scale: 1.6;
    }

    #fruitfillingpgimg {
        margin-top: -5%;
        margin-right: 25%;
        margin-left: -10%;
        margin-bottom: 0%;
        scale: 1.7;
    }

    #Chipsipgimg {
        margin-top: 5%;
        margin-right: -30%;
        margin-left: 30%;
        scale: 1.35;
        margin-bottom: -60%;
    }

    #cocoadrageimg {
        margin-top: -10%;
        scale: 1.1;
        margin-right: 5%;
        margin-bottom: -30%;
    }

    #cocoachipsiimg {
        margin-top: -15%;
        scale: 0.9;
        margin-right: 10%;
    }

    #cocoacoatingpgimg {
        margin-top: 5%;
        margin-bottom: -5%;
        margin-right: -30%;
        margin-left: 5%;
    }

    #cocoapistachioimg {
        margin-right: 5%;
        scale: 1;
        margin-top: -25%;
        margin-bottom: -15%;
    }

    #cocoacoatingimg {
        margin-top: -5%;
        scale: 1.2;
    }

    #Hazelnutcocoaimg {
        margin-right: 5%;
        scale: 1;
        margin-top: -25%;
        margin-bottom: -10%;
    }

    #creamBiscuitsimg {
        margin-right: 10%;
        scale: 1;
        margin-top: -25%;
        margin-bottom: -15%;
    }

    #compoundch1 {
        margin-right: -25%;
    }

    #compoundch2 {
        margin-right: -25%;
    }

    #compoundch3 {
        margin-right: -20%;
    }

    #compoundch4 {
        margin-right: -10%;
    }

    #coinchocopgimg {
        margin-top: 5%;
        margin-right: -10%;
        margin-left: 10%;
        margin-bottom: -55%;
    }

    #concentradeimg {
        margin-top: 20%;
        scale: 1.1;
        margin-right: -70%;
        margin-bottom: -40%;
    }

    #cakegelimg {
        margin-top: -25%;
        scale: 1.4;
        margin-right: -35%;
        margin-bottom: -25%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.9;
        margin-bottom: -70%;
        margin-right: -50%;
    }

    #spongeimg {
        margin-top: -40%;
        scale: 1;
        margin-bottom: -60%;
        margin-right: -50%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 1.2;
        margin-right: -40%;
        margin-bottom: -30%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -52%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.8;
        margin-bottom: -70%;
        margin-right: -50%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 15px;
        padding-left: 24%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 24%;
        direction: ltr;
        padding-left: 12px;
    }

    div.notemasrafp ul {
        padding-right: 14%;
    }

    p.masrafp {
        margin-right: 13%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 101%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 370px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 4%;
        direction: ltr;
    }

    div.footer-copyrightsocial hr {
        width: 60%;
        margin-right: 18%;
    }

    div.footer {
        padding-top: 160px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 15px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 17px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 32px;
        margin-right: -3%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 36px;
        margin-right: 152%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: 44px;
        direction: ltr;
        margin-left: -25%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: -30%;
        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 25%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 31.5px;
        font-size: 22px;
        direction: ltr;
    }

    div.header-logo {
        margin-right: 0%;
        margin-left: -7%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 24px;
        margin-left: -25%;
        margin-right: -15%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 15%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 55%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 28px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: 24px;
        margin-right: -19%;
        margin-left: -19%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 26%;
        padding: 5px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1325px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 1;
        margin-right: -15%;
        margin-top: -10%;
        width: 20%;
        height: 50px;
        font-size: x-large;
        text-align: center;
        line-height: 50px;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.2;
        margin-top: 21%;
        margin-left: 30%;
        margin-right: -55%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 163%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 9%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 102%;
        margin-left: -88%;
        padding-bottom: 10%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        direction: ltr;
        text-align: justify;
        font-size: 20px;
        margin-right: 10%;
        line-height: 26px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -8%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: -4%;
        margin-right: -20%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 5%;
        margin-left: -6%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 9%;
        font-size: 20px;
    }

    #masrafnote {
        font-size: x-large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2600px) and (max-width: 2699px) {
    nav.main-menu {
        font-size: 20px;
    }

    #ColdGlazeh2RU {
        margin-top: 28%;
        margin-right: -55%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 30%
    }

    p.footer-copyright span {
        font-size: 20px;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 34%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -65%;
        font-size: 60px;
        margin-top: 31%;
    }

    #drageeh2RU {
        margin-right: -55%;
        margin-top: 28%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -73%;
        font-size: 58px;
        margin-top: 30%;
    }

    #cocoapistah2RU {
        margin-right: -55%;
        font-size: 60px;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -60%;
        margin-top: 28%;
    }

    #BiscuitsCreamh2RU {
        margin-right: -25%;
        margin-top: 30%;
    }

    #compundchocoh2RU {
        margin-right: -80%;
        width: 186%;
        font-size: 66px;
        margin-top: 30%;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
        margin-top: 28%;
    }

    #concentradeimgRU {
        margin-top: 30%;
        scale: 2.7;
        margin-right: -50%;
        margin-bottom: 35%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -35%;
        margin-top: 28%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -82%;
        font-size: 66px;
        margin-top: 28%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -80%;
        margin-top: 30%;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
        margin-top: 22%;
    }

    #FruityPastryFillingh2RU {
        margin-right: -75%;
        margin-top: 30%;
    }

    h3#otherproh3 {
        font-size: 30px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    h3#eduh3RU {
        font-size: 24px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 21px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 96%;
        margin-left: -88%;
        padding-bottom: 4%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.8;
        margin-right: -18%;
        margin-top: -5%;
        width: 22%;
        font-size: smaller;
        height: 60px;
        line-height: 54px;
        text-align: center;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -13%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 12%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -37%;
        width: 143%;
        margin-top: 28%;
    }

    #drageeh2 {
        margin-right: -46%;
        width: 150%;
        font-size: 68px;
        margin-top: 30%;
    }

    #cocoacoatingh2 {
        margin-right: -28%;
        font-size: 60px;
        width: 133%;
        margin-top: 30%;
    }

    #cocoapistah2 {
        margin-right: -90%;
        width: 195%;
        font-size: 60px;
        margin-top: 30%;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
        margin-top: 28%;
    }

    #BiscuitsCreamh2 {
        margin-top: 30%;
    }

    #compundchocoh2 {
        margin-right: -20%;
        margin-top: 28%;
    }

    #Compoundchocolateimg {
        margin-right: 5%;
        margin-left: 5%;
        margin-bottom: -30%;
    }

    #chococoinsh2 {
        margin-right: -50%;
        margin-top: 28%;
    }

    #ConcentratedPasteh2 {
        margin-top: 30%;
    }

    #CakeGelh2 {
        margin-top: 30%;
    }

    #VelvetCakeMixh2 {
        margin-top: 30%;
    }

    #MuffinCakeMixh2 {
        margin-top: 30%;
    }

    #SpongeCakeMixh2 {
        margin-top: 30%;
    }

    #WhippingCreamh2 {
        margin-top: 30%;
    }

    #fondanth2 {
        margin-top: 30%;
    }

    #ColdGlazeh2 {
        margin-top: 30%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 30%;
    }

    #FruityPastryFillingh2 {
        margin-top: 30%;
    }

    #fruitfillingh2 {
        margin-top: 30%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    #creamfillingh2 {
        margin-top: 30%;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 12%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.tm-education-image {
        scale: 90%;
        margin-top: 4%;
        margin-left: 5%;
        margin-right: -18%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    div.tm-form-field input {
        width: 40%;
        padding-left: 2%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 34%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 42%;
        height: 200px;
        direction: ltr;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 38%;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -35%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    #creamfillingpgimg {
        scale: 0.8;
        margin-right: 0%;
        margin-left: 0%;
        margin-top: -10%;
        margin-bottom: -15%;
    }

    #Chipsipgimg {
        margin-bottom: -10%;
    }

    #cocoacoatingpgimg {
        scale: 1;
    }

    #concentradepgimg {
        margin-top: -5%;
        margin-right: 20%;
    }

    #cakegelpgimg {
        margin-top: 0%;
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: 20%;
    }

    #velvetpgimg {
        margin-top: 10%;
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: 20%;
    }

    #muffinpgimg {
        margin-top: 10%;
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: 20%;
    }

    #spongepgimg {
        margin-top: 10%;
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: 20%;
    }

    #WhippingCreampgimg {
        margin-top: 0%;
        margin-right: 30%;
        margin-left: -15%;
        margin-bottom: 20%;
    }

    #fondantpgimg {
        margin-top: 15%;
        margin-right: 15%;
        margin-left: 20%;
        margin-bottom: 0%;
        scale: 1.6;
    }

    #coldglazepgimg {
        scale: 1.5;
        margin-top: 10%;
        margin-right: 10%;
        margin-left: 25%;
        margin-bottom: 5%;
    }

    div.notemasraf p {
        text-align: justify;
    }

    #delipgimg {
        scale: 1.5;
        margin-top: 15%;
        margin-right: 10%;
        margin-left: 20%;
        margin-bottom: -5%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 15%;
        margin-right: 40%;
        margin-left: -10%;
        margin-bottom: 0%;
        scale: 1.9;
    }

    #fruitfillingpgimg {
        margin-top: 0%;
        margin-right: 30%;
        margin-left: -10%;
        margin-bottom: 5%;
        scale: 1.8;
    }

    #Chipsipgimg {
        margin-top: 0%;
        margin-right: -35%;
        margin-left: 35%;
        scale: 1.5;
        margin-bottom: -60%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.2;
        margin-right: 5%;
        margin-bottom: -35%;
    }

    #cocoacoatingpgimg {
        margin-top: 5%;
        margin-bottom: 0%;
        margin-right: -30%;
        margin-left: 10%;
    }

    #cocoapistachioimg {
        margin-right: 5%;
        scale: 1.1;
        margin-top: -20%;
        margin-bottom: -10%;
    }

    #cocoacoatingimg {
        margin-top: -5%;
        scale: 1.3;
    }

    #Hazelnutcocoaimg {
        margin-right: 0%;
        scale: 1;
        margin-top: -20%;
        margin-bottom: -10%;
    }

    #creamBiscuitsimg {
        margin-right: 5%;
        scale: 1;
        margin-top: -15%;
        margin-bottom: -15%;
    }

    #compoundch1 {
        margin-right: -25%;
    }

    #compoundch2 {
        margin-right: -25%;
    }

    #compoundch3 {
        margin-right: -20%;
    }

    #compoundch4 {
        margin-right: -10%;
    }

    #coinchocopgimg {
        margin-top: 15%;
        margin-right: -10%;
        margin-left: 20%;
        margin-bottom: -45%;
    }

    #concentradeimg {
        margin-top: 35%;
        scale: 1;
        margin-right: -15%;
        margin-bottom: -5%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 1.1;
        margin-right: -30%;
        margin-bottom: -20%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.75;
        margin-bottom: -55%;
        margin-right: -35%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -50%;
        margin-right: -35%;
    }

    #Whippingimg {
        margin-top: -5%;
        scale: 0.8;
        margin-right: -40%;
        margin-bottom: -25%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -48%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -60%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 7px;
        padding-left: 25%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 24%;
        padding-left: 30px;
        direction: ltr;
    }

    div.notemasrafp ul {
        padding-right: 15%;
    }

    p.masrafp {
        margin-right: 14%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 101%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 370px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 3%;
        direction: ltr;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 58%;
        margin-right: 19%;
    }

    div.footer {
        padding-top: 167px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    iframe {
        margin-top: -3%;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.1;
        height: 520px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
    }

    .header-icons ul li {
        font-size: 25px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 28px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 40px;
        margin-right: 148%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: 40px;
        direction: ltr;
        margin-left: -21%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 30%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 27.5px;
        font-size: 20px;
        direction: ltr;
        margin-left: 15%;
    }

    div.header-logo {
        margin-right: 0%;
        margin-left: -14%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 24px;
        margin-left: -20%;
        margin-right: -15%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 60%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-right: -20%;
        margin-left: -20%;
        margin-bottom: -45%;
        font-size: 24px;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 20%;
        background-position-x: 5%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1395px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.8;
        margin-right: -18%;
        margin-top: -13%;
        width: 22%;
        font-size: smaller;
        height: 60px;
        line-height: 54px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.4;
        margin-top: 17%;
        margin-left: 40%;
        margin-right: -45%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 170%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 4%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 21px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 100%;
        margin-left: -88%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        font-size: 20px;
        direction: ltr;
        margin-right: 10%;
        margin-top: 2%;
        line-height: 26px;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -10%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: -5%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 83%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 5%;
        margin-left: -6%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 10%;
    }

    #masrafnote {
        font-size: large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 2700px) and (max-width: 2799px) {
    #ColdGlazeh2RU {
        margin-top: 22%;
        margin-right: -55%;
    }

    p.footer-copyright span {
        font-size: 20px;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 34%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -40%;
        font-size: 60px;
        margin-top: 24%;
    }

    #drageeh2RU {
        margin-right: -35%;
        margin-top: 22%;
        font-size: 64px;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -90%;
        font-size: 58px;
    }

    #cocoapistah2RU {
        margin-right: -55%;
        font-size: 60px;
        margin-top: 23%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -40%;
    }

    #BiscuitsCreamh2RU {
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -96%;
        width: 186%;
        font-size: 66px;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.2;
        margin-right: -40%;
        margin-bottom: -5%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -25%;
        margin-top: 22%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 16%;
        margin-right: -100%;
        font-size: 66px;
        margin-top: 23%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -96%;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
        margin-top: 22%;
    }

    #FruityPastryFillingh2RU {
        margin-left: 15%;
        margin-right: -95%;
        font-size: 70px;
    }

    h3#otherproh3 {
        font-size: 30px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    div.tm-education-content {
        margin-right: 15%;
        text-align: justify;
        margin-top: 11%;
        margin-left: 10%;
    }

    h3#eduh3RU {
        font-size: 24px;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -15%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 12%;
    }

    #callspan {
        margin-left: 7%;
    }

    #chipsih2 {
        margin-right: -20%;
        width: 110%;
    }

    #drageeh2 {
        margin-right: -20%;
        width: 115%;
        font-size: 68px;
        margin-top: 22%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        font-size: 60px;
    }

    #cocoapistah2 {
        margin-right: -20%;
        width: 195%;
        font-size: 60px;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
    }

    #Compoundchocolateimg {
        margin-left: -5%;
        margin-right: 5%;
        margin-bottom: -30%;
    }

    #chococoinsh2 {
        font-size: 68px;
        margin-top: 23%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    .notemasraf {
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 56%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 14%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 58%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 18%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.tm-education-image {
        scale: 90%;
        margin-top: 4%;
        margin-left: 5%;
        margin-right: -17%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 33%;
        background: white;
    }

    div.tm-form-field input {
        width: 41%;
        padding-left: 2%;
    }

    div.tm-form-field textarea {
        width: 41%;
        height: 200px;
        direction: ltr;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 38%;
    }

    #fruitfillingimg {
        margin-top: -20%;
        margin-right: -19%;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -30%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    #creamfillingpgimg {
        scale: 0.8;
        margin-right: -5%;
        margin-left: 10%;
        margin-top: -10%;
        margin-bottom: -5%;
    }

    #Chipsipgimg {
        margin-bottom: -10%;
    }

    #cocoacoatingpgimg {
        scale: 1;
    }

    #concentradepgimg {
        margin-top: -3%;
        margin-right: 10%;
        margin-left: -10%;
        margin-bottom: 20%;
    }

    #cakegelpgimg {
        margin-top: 5%;
        margin-right: 15%;
        margin-left: 15%;
        margin-bottom: 20%;
    }

    #velvetpgimg {
        margin-top: 5%;
        margin-right: 5%;
        margin-left: 5%;
    }

    #muffinpgimg {
        margin-top: 10%;
        margin-right: 15%;
        margin-left: 19%;
    }

    #spongepgimg {
        margin-top: 10%;
        margin-right: 5%;
        margin-left: 5%;

    }

    #WhippingCreampgimg {
        margin-top: 10%;
        margin-right: 30%;
        margin-left: -10%;
    }

    #fondantpgimg {
        margin-top: 10%;
        margin-right: 10%;
        margin-left: 20%;
        margin-bottom: 0%;
        scale: 1.4;
    }

    #coldglazepgimg {
        margin-top: 10%;
        margin-right: 5%;
        margin-left: 30%;
        margin-bottom: 5%;
        scale: 1.5;
    }

    div.notemasraf p {
        text-align: justify;
        margin-left: 0%;
    }

    #delipgimg {
        scale: 1.5;
        margin-top: 15%;
        margin-right: 5%;
        margin-left: 25%;
        margin-bottom: -5%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 5%;
        margin-right: 30%;
        margin-left: 5%;
    }

    #fruitfillingpgimg {
        margin-top: -5%;
        margin-right: 10%;
        margin-left: 15%;
        margin-bottom: 10%;
        scale: 1.9;
    }

    #Chipsipgimg {
        margin-top: 10%;
        margin-right: -35%;
        margin-left: 35%;
        scale: 1.5;
        margin-bottom: -60%;
    }

    #cocoadrageimg {
        margin-top: -5%;
        scale: 1.1;
        margin-right: 10%;
        margin-bottom: -35%;
    }

    #cocoachipsiimg {
        margin-top: -15%;
        scale: 0.9;
        margin-right: 10%;
    }

    #cocoacoatingpgimg {
        margin-top: 10%;
        margin-bottom: 0%;
        margin-right: -30%;
        margin-left: 15%;
    }

    #cocoapistachioimg {
        margin-right: 10%;
        scale: 1.1;
        margin-top: -15%;
        margin-bottom: -15%;
    }

    #Hazelnutcocoaimg {
        margin-right: 5%;
        scale: 1;
        margin-top: -15%;
        margin-bottom: -7%;
    }

    #creamBiscuitsimg {
        margin-right: 10%;
        scale: 1;
        margin-top: -15%;
        margin-bottom: -15%;
    }

    #compoundch1 {
        margin-right: -25%;
    }

    #compoundch2 {
        margin-right: -25%;
    }

    #compoundch3 {
        margin-right: -20%;
    }

    #compoundch4 {
        margin-right: -10%;
    }

    #coinchocopgimg {
        margin-top: 15%;
        margin-right: -10%;
        margin-left: 25%;
        margin-bottom: -45%;
        scale: 1.7;
    }

    #concentradeimg {
        margin-top: -12%;
        scale: 0.5;
        margin-right: -40%;
        margin-bottom: -40%;
    }

    #cakegelimg {
        margin-top: -25%;
        scale: 1.4;
        margin-right: -35%;
        margin-bottom: -20%;
    }

    #velvetimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -45%;
        margin-right: -30%;
    }

    #spongeimg {
        margin-top: -40%;
        scale: 0.75;
        margin-bottom: -35%;
        margin-right: -30%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.9;
        margin-right: -40%;
        margin-bottom: -15%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    #fruitypastryfiilingimg {
        margin-top: -25%;
        margin-right: -55%;
        scale: 1.5;
    }

    #muffinimg {
        margin-top: -40%;
        scale: 0.75;
        margin-bottom: -50%;
        margin-right: -40%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 15px;
        padding-left: 26%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 26%;
        direction: ltr;
        padding-left: 10px;
    }

    div.notemasrafp ul {
        padding-right: 16%;
    }

    p.masrafp {
        margin-right: 15%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 102%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 370px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 4%;
        direction: ltr;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 60%;
        margin-right: 18%;
    }

    div.footer {
        padding-top: 171px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.2;
        height: 520px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
    }

    .header-icons ul li {
        font-size: 25px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -21%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 28px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 38px;
        margin-right: 152%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: xxx-large;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;

        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 29%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 27.5px;
        font-size: 18px;
        direction: ltr;
    }

    div.header-logo {
        margin-right: 0%;
        margin-left: -14%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 24px;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 60%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -43%;
        font-size: 24px;
        margin-right: -19%;
        margin-left: -19%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 15%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0px;
        font-size: xx-large;
        margin-left: -20%;
        direction: ltr;
        margin-right: -8%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1470px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.9;
        margin-left: 82%;
        margin-top: -5%;
        width: 20%;
        font-size: 26px;
        line-height: 48px;
        height: 50px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.3;
        margin-top: 12%;
        margin-left: 30%;
        margin-right: -55%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 170%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 4%;
        margin-top: 1%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 98%;
        margin-left: -90%;
        padding-bottom: 11%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        font-size: 20px;
        direction: ltr;
        text-align: justify;
        margin-right: 9%;
        line-height: 26px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -10%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: 15%;
        margin-top: 25%;
    }

    .pweight {
        margin-left: 93%;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 85%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 15%;
        margin-left: -7%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 12%;
    }

    #masrafnote {
        font-size: 20px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }
}

@media only screen and (min-width: 2800px) and (max-width: 2899px) {
    #ColdGlazeh2RU {
        margin-top: 22%;
        margin-right: -55%;
    }

    p.footer-copyright span {
        font-size: 20px;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 32%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 5%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -40%;
        font-size: 60px;
        margin-top: 24%;
    }

    #drageeh2RU {
        margin-right: -35%;
        margin-top: 24%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -90%;
        font-size: 58px;
    }

    #cocoapistah2RU {
        font-size: 60px;
        margin-right: -50%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -40%;
    }

    #BiscuitsCreamh2RU {
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -96%;
        width: 186%;
        font-size: 66px;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
    }

    #concentradeimgRU {
        margin-top: 0%;
        scale: 1;
        margin-right: 5%;
        margin-bottom: -10%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -20%;
        margin-top: 22%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 11%;
        margin-right: -100%;
        font-size: 66px;
        margin-top: 23%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -96%;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
        margin-top: 22%;
    }

    #FruityPastryFillingh2RU {
        margin-left: 11%;
        margin-right: -95%;
        font-size: 70px;
    }

    h3#otherproh3 {
        font-size: 30px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    h3#eduh3RU {
        font-size: 24px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 98%;
        margin-left: -90%;
        padding-bottom: 12%;
        direction: ltr;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -13%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 12%;
    }

    #callspan {
        margin-left: 7%;
    }

    #drageeh2 {
        margin-right: -26%;
        font-size: 68px;
        width: 115%;
        margin-top: 23%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        font-size: 60px;
    }

    #cocoapistah2 {
        margin-right: -105%;
        width: 195%;
        font-size: 60px;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
    }

    #Compoundchocolateimg {
        margin-left: -30%;
        margin-right: 10%;
        margin-bottom: -30%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 54%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 12%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 56%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 16%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #emailfield {
        margin-left: -1%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    #coinchocopgimg {
        margin-top: -5%;
        margin-right: -15%;
        margin-left: 15%;
    }

    div.tm-education-image {
        scale: 95%;
        margin-top: 6%;
        margin-left: 8%;
        margin-right: -16%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 32%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 40%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 38%;
        padding-left: 2%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 37%;
    }

    .notemasraf {
        padding-right: 17%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #creamfilling6 {
        margin-top: -80%;
        margin-right: 12%;
    }

    #creamfilling13 {
        margin-top: -30%;
        margin-right: -20%;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -30%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    #creamfillingpgimg {
        scale: 0.7;
        margin-right: -20%;
        margin-left: 5%;
        margin-top: -20%;
        margin-bottom: -10%;
    }

    #Chipsipgimg {
        margin-bottom: -10%;
    }

    #cocoacoatingpgimg {
        scale: 1;
    }

    #concentradepgimg {
        margin-top: -19%;
    }

    #cakegelpgimg {
        margin-top: -5%;
        margin-right: -10%;
        margin-left: 10%;
    }

    #velvetpgimg {
        margin-top: 5%;
        margin-right: 0%;
        margin-left: 10%;
    }

    #muffinpgimg {
        margin-top: -5%;
        margin-right: 0%;
        margin-left: 10%;
    }

    #spongepgimg {
        margin-top: 5%;
        margin-right: 0%;
        margin-left: 10%;
    }

    #WhippingCreampgimg {
        margin-top: 0%;
        margin-right: 10%;
        margin-left: -10%;
    }

    #fondantpgimg {
        margin-top: 5%;
        margin-right: 5%;
        margin-left: 10%;
        scale: 1.2;
        margin-bottom: 0%;
    }

    #coldglazepgimg {
        scale: 1.2;
        margin-top: 5%;
        margin-right: 0%;
        margin-left: 20%;
        margin-bottom: 0%;
    }

    div.notemasraf p {
        text-align: justify;
    }

    #delipgimg {
        margin-top: 5%;
        margin-right: 0%;
        margin-left: 5%;
        margin-bottom: -10%;
        scale: 1.15;
    }

    #fruitypastryfiilingpgimg {
        scale: 1.3;
        margin-top: 0%;
        margin-right: 25%;
        margin-left: -20%;
        margin-bottom: 0%;
    }

    #fruitfillingpgimg {
        margin-top: -25%;
        margin-right: -10%;
        margin-left: -35%;
        margin-bottom: -20%;
        scale: 1;
    }

    #Chipsipgimg {
        margin-top: 0%;
        margin-right: -25%;
        margin-left: 25%;
        scale: 1.5;
        margin-bottom: -60%;
    }

    #cocoadrageimg {
        margin-top: -10%;
        scale: 1.1;
        margin-right: 10%;
        margin-bottom: -30%;
    }

    #cocoacoatingpgimg {
        margin-top: 10%;
        margin-bottom: 0%;
        margin-right: -30%;
        margin-left: 15%;
    }

    #cocoapistachioimg {
        margin-right: 10%;
        scale: 1.1;
        margin-bottom: -15%;
        margin-top: -10%;
    }

    #Hazelnutcocoaimg {
        margin-right: 5%;
        scale: 1.1;
        margin-top: -10%;
        margin-bottom: -9%;
    }

    #creamBiscuitsimg {
        margin-right: 10%;
        scale: 1;
        margin-bottom: -15%;
        margin-top: -10%;
    }

    #compoundch1 {
        margin-right: -40%;
    }

    #compoundch2 {
        margin-right: -40%;
    }

    #compoundch3 {
        margin-right: -40%;
    }

    #compoundch4 {
        margin-right: -35%;
    }

    #coinchocopgimg {
        margin-top: 0;
        margin-right: -30%;
        margin-left: 10%;
        margin-bottom: -60%;
        scale: 1.2;
    }

    #concentradeimg {
        margin-top: -10%;
        scale: 0.5;
        margin-right: 5%;
        margin-bottom: -45%;
    }

    #cakegelimg {
        margin-top: -20%;
        scale: 1.4;
        margin-right: -20%;
        margin-bottom: -25%;
    }

    #velvetimg {
        margin-top: -35%;
        scale: 1;
        margin-bottom: -45%;
        margin-right: -30%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 1;
        margin-bottom: -35%;
        margin-right: -40%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.9;
        margin-right: -30%;
        margin-bottom: -15%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -45%;
    }

    #muffinimg {
        margin-top: -30%;
        scale: 0.7;
        margin-bottom: -50%;
        margin-right: -35%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5px;
        padding-left: 27%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 27%;
        direction: ltr;
    }

    div.notemasrafp ul {
        padding-right: 21%;
    }

    p.masrafp {
        margin-right: 20%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 1%;
        margin-right: -3%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 101%;
        text-align: -webkit-center;
        margin-right: -1%;
    }

    #contactuscadrin {
        background-color: white;
        height: 370px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 3%;
        direction: ltr;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 60%;
        margin-right: 18%;
    }

    div.footer {
        padding-top: 179px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.2;
        height: 535px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
    }

    .header-icons ul li {
        font-size: 25px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -9%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 28px;
        margin-right: -5%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 36px;
        margin-right: 154%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: xxx-large;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position-y: 100%;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 31%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 27.5px;
        font-size: 18px;
        direction: ltr;
        margin-left: 15%;
    }

    div.header-logo {
        margin-right: 0%;
        margin-left: -14%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 24px;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 60%;
        font-weight: 900;
    }

    p.proship {
        font-size: 25px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 44px;
    }

    .tm-section-title p {
        margin-bottom: -45%;
        font-size: x-large;
        margin-right: -20%;
        margin-left: -20%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 15%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0px;
        font-size: xx-large;
        margin-left: -20%;
        margin-right: -10%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1490px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: -3%;
        margin-top: -5%;
        width: 20%;
        font-size: smaller;
        height: 60px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: -2%;
        margin-left: 15%;
        margin-right: -75%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 170%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 6%;
        margin-top: 0%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 100%;
        margin-left: -90%;
        padding-bottom: 12%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 45%;
        font-size: 30px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        margin-right: 10%;
        font-size: 20px;
        direction: ltr;
        text-align: justify;
        line-height: 26px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -10%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: 11%;
        margin-top: 25%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 85%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
        margin-left: -5%;
    }

    .notemasrafp {
        padding-top: 5%;
        direction: ltr;
        padding-left: 12%;
    }

    #masrafnote {
        font-size: x-large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 2900px) and (max-width: 2999px) {
    #ColdGlazeh2RU {
        margin-top: 22%;
        margin-right: -55%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 32%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 10%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -35%;
        font-size: 60px;
    }

    #drageeh2RU {
        margin-right: -30%;
        margin-top: 24%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -75%;
        font-size: 56px;
    }

    #cocoapistah2RU {
        font-size: 60px;
        margin-right: -50%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -35%;
    }

    #BiscuitsCreamh2RU {
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -82%;
        width: 186%;
        font-size: 66px;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1;
        margin-right: 0%;
        margin-bottom: 0%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -20%;
        margin-top: 22%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: 11%;
        margin-right: -84%;
        font-size: 66px;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -80%;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
        margin-top: 22%;
    }

    #FruityPastryFillingh2RU {
        margin-left: 11%;
        margin-right: -95%;
        font-size: 70px;
    }

    h3#otherproh3 {
        font-size: 30px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    h3#eduh3RU {
        font-size: 25px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: -7%;
        margin-right: 112%;
        margin-left: -89%;
        padding-bottom: 5%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.7;
        margin-top: -10%;
        width: 22%;
        font-size: larger;
        height: 60px;
        margin-left: 82%;
        text-align: center;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -14%;
    }

    div.tm-form-field input {
        width: 37%;
        padding-left: 2%;
    }

    #emailicon {
        margin-left: -1%;
    }

    #addressspan {
        margin-left: 8%;
    }

    #emailspan {
        margin-left: 11%;
    }

    #callspan {
        margin-left: 5%;
    }

    #drageeh2 {
        margin-right: -20%;
        width: 115%;
        margin-top: 23%;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        font-size: 60px;
    }

    #cocoapistah2 {
        margin-right: -20%;
        width: 195%;
        font-size: 60px;
    }

    #Compoundchocolateimg {
        margin-left: -25%;
        margin-right: 40%;
        margin-bottom: -20%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 52%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 10%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 56%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 16%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #emailfield {
        margin-left: -1%;
    }

    h5.widget-title {
        margin-left: 5%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    div.tm-education-image {
        scale: 90%;
        margin-top: 5%;
        margin-left: 5%;
        margin-right: -15%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 30%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 38%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        scale: 93%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 35%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    .footer-copyrightsocial {
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
        margin-right: -30%;
    }

    ul.footeraddress {
        margin-left: -4%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    #creamfillingpgimg {
        scale: 1;
        margin-right: 5%;
        margin-left: 10%;
        margin-top: -5%;
        margin-bottom: 5%;
    }

    #Chipsipgimg {
        margin-bottom: -10%;
    }

    #cocoacoatingpgimg {
        scale: 1;
    }

    #concentradepgimg {
        margin-top: 10%;
    }

    #cakegelpgimg {
        margin-top: 10%;
    }

    #velvetpgimg {
        margin-top: 15%;
    }

    #muffinpgimg {
        margin-top: 15%;
    }

    #spongepgimg {
        margin-top: 15%;
    }

    #WhippingCreampgimg {
        margin-top: 10%;
        margin-right: 20%;
        margin-left: -20%;
    }

    #fondantpgimg {
        margin-top: 5%;
        scale: 1.2;
        margin-right: 0%;
        margin-left: 15%;
        margin-bottom: 0%;
    }

    #coldglazepgimg {
        margin-top: 0%;
        scale: 105%;
        margin-right: -5%;
        margin-left: 5%;
        margin-bottom: -10%;
    }

    div.notemasraf p {
        text-align: justify;
    }

    #delipgimg {
        scale: 1.7;
        margin-top: 15%;
        margin-right: 10%;
        margin-left: 25%;
        margin-bottom: 5%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 0%;
        margin-right: 0%;
        scale: 1.3;
        margin-left: 5%;
        margin-bottom: 5%;
    }

    #fruitfillingpgimg {
        margin-top: -25%;
        scale: 105%;
        margin-bottom: -15%;
        margin-right: 0%;
        margin-left: -40%;
    }

    #Chipsipgimg {
        margin-top: 0%;
        margin-right: -25%;
        margin-left: 25%;
        scale: 1.6;
        margin-bottom: -55%;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.3;
        margin-right: 5%;
        margin-bottom: -30%;
    }

    #cocoacoatingpgimg {
        margin-top: 10%;
        margin-bottom: 5%;
        margin-right: -30%;
        margin-left: 15%;
    }

    #cocoapistachioimg {
        margin-right: 10%;
        scale: 1.2;
        margin-top: -20%;
        margin-bottom: 0%;
    }

    #Hazelnutcocoaimg {
        margin-right: 0%;
        scale: 1.1;
        margin-top: -14%;
        margin-bottom: 0%;
    }

    #creamBiscuitsimg {
        margin-right: 5%;
        scale: 1;
        margin-top: -15% -89.9063px;
        margin-bottom: -5%;
    }

    #compoundch1 {
        margin-right: -45%;
    }

    #compoundch2 {
        margin-right: -45%;
    }

    #compoundch3 {
        margin-right: -45%;
    }

    #compoundch4 {
        margin-right: -40%;
    }

    #coinchocopgimg {
        margin-top: 5%;
        margin-right: -15%;
        margin-left: 20%;
        scale: 1.4;
        margin-bottom: -40%;
    }

    #concentradeimg {
        margin-top: -20%;
        scale: 0.5;
        margin-right: 0%;
        margin-bottom: -30%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 1;
        margin-right: 10%;
        margin-bottom: -25%;
    }

    #velvetimg {
        margin-top: -45%;
        scale: 0.65;
        margin-bottom: -45%;
        margin-right: 5%;
    }

    #spongeimg {
        margin-top: -45%;
        scale: 0.6;
        margin-bottom: -35%;
        margin-right: 0%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.6;
        margin-right: -30%;
        margin-bottom: -10%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -30%;
        margin-right: -30%;
    }

    #fruitypastryfiilingimg {
        margin-top: -30%;
        margin-right: -25%;
    }

    #muffinimg {
        margin-top: -50%;
        scale: 0.5;
        margin-bottom: -50%;
        margin-right: 5%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 0px;
        padding-left: 28%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 28%;
        direction: ltr;
    }

    p.masrafp {
        margin-right: 18%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 102%;
        text-align: -webkit-center;
        margin-right: -2%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-right: 5%;
        direction: ltr;
        margin-left: 5%;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 58%;
        margin-right: 19%;
    }

    div.footer {
        padding-top: 183px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.2;
        height: 530px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
    }

    .header-icons ul li {
        font-size: 22px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -6%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 16px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: larger;
        margin-left: -10%;
        margin-right: -15%;
    }

    div.tm-education-content h3 {
        font-size: 30px;
        margin-right: -7%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -90%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: 30px;
        margin-right: 159%;
        margin-top: -25%;
        padding-top: 6%;
        margin-bottom: 10%;
    }

    div.tm-about-content h3 {
        font-size: 38px;
        direction: ltr;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 32%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 27.5px;
        font-size: 18px;
        direction: ltr;
        margin-left: 10%;
    }

    div.header-logo {
        margin-left: -12%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -1%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 24px;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 60%;
        font-weight: 900;
    }

    p.proship {
        font-size: 26px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 50px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        font-size: 24px;
        margin-right: -19%;
        margin-left: -19%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 15%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0px;
        font-size: 24px;
        margin-left: -20%;
        direction: ltr;
        margin-right: -12%;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1540px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-top: -5%;
        width: 22%;
        font-size: larger;
        height: 60px;
        margin-left: 82%;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 10%;
        scale: 1.5;
        margin-top: 19%;
        margin-left: 40%;
        margin-right: -40%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 170%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 5%;
        margin-top: 1%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: -7%;
        margin-right: 114%;
        margin-left: -89%;
        padding-bottom: 9%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 43%;
        font-size: 28px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        margin-right: 9%;
        font-size: 20px;
        direction: ltr;
        line-height: 26px;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: -9%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: 11%;
        margin-top: 25%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 83%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
        margin-left: -5%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 14%;
        font-size: 20px;
    }

    #masrafnote {
        font-size: x-large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 3000px) and (max-width: 3099px) {
    #ColdGlazeh2RU {
        margin-top: 32%;
        margin-right: -55%;
    }

    p.footer-copyright span {
        font-size: 18px;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 30%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 10%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -70%;
        font-size: 56px;
    }

    #drageeh2RU {
        margin-right: -65%;
        font-size: 66px;
        margin-top: 34%;
    }

    #cocoacoatingh2RU {
        width: 180%;
        margin-right: -75%;
        font-size: 52px;
    }

    #cocoapistah2RU {
        font-size: 56px;
        margin-right: -50%;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -74%;
        width: 180%;
        font-size: 66px;
    }

    #BiscuitsCreamh2RU {
        margin-right: -25%;
    }

    #compundchocoh2RU {
        margin-right: -82%;
        width: 186%;
        font-size: 66px;
    }

    #ConcentratedPasteh2RU {
        margin-right: -50%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1;
        margin-right: 15%;
        margin-bottom: 5%;
        background: unset;
    }

    #VelvetCakeMixh2RU {
        margin-right: -45%;
        margin-top: 32%;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: -16%;
        margin-right: -84%;
        font-size: 60px;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -80%;
        font-size: 64px;
    }

    #ColdGlazeh2 {
        margin-right: -50%;
        margin-top: 32%;
    }

    #FruityPastryFillingh2RU {
        margin-left: -7%;
        margin-right: -95%;
        font-size: 65px;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 7%;
        scale: 1.1;
    }

    .tm-parallax.parallaxRU {
        height: 280px;
    }

    div.tm-education-content {
        margin-right: 15%;
        text-align: justify;
        margin-top: 11%;
        margin-left: 11%;
    }

    h3#eduh3RU {
        font-size: 25px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 111%;
        margin-left: -88%;
        padding-bottom: 3%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.8;
        margin-right: -24%;
        margin-top: -18%;
        width: 23%;
        line-height: 50px;
        height: 50px;
        text-align: center;
        font-size: smaller;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -12%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    #callspan {
        margin-left: 8%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailicon {
        margin-left: -1%;
    }

    #chipsih2 {
        margin-right: -46%;
        width: 151%;
    }

    #drageeh2 {
        margin-right: -65%;
        width: 170%;
        font-size: 68px;
    }

    #cocoacoatingh2 {
        margin-right: -20%;
        font-size: 53px;
    }

    #cocoapistah2 {
        margin-right: -90%;
        width: 195%;
        font-size: 60px;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
    }

    #Compoundchocolateimg {
        margin-left: -25%;
        margin-right: 50%;
        margin-bottom: -20%;
    }

    #chococoinsh2 {
        font-size: 58px;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.tm-funfact-content div {
        padding-right: 1%;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 10%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 54%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 16%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.single-widget.widget-quicklinks ul {
        margin-left: -10%;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    #fruitfillingimg {
        margin-top: -25%;
        margin-right: 15%;
        scale: 1;
        margin-bottom: -5%;
    }

    #creamfillingpgimg {
        margin-top: -5%;
        scale: 95%;
        margin-left: 13%;
        margin-right: 3%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 32%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 29%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 37%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 35%;
        padding-left: 2%;
    }

    .govahiimg {
        margin-bottom: 5%;
        scale: 63%;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: 15%;
        scale: 75%;
        margin-bottom: -20%;
    }

    .notemasraf {
        padding-right: 19%;
        padding-left: 20%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
    }

    div.tm-education-image {
        scale: 90%;
        margin-top: 4%;
        margin-left: 5%;
        margin-right: -18%;
    }

    .footer-copyrightsocial {
        text-align: left;
        padding: 5px 0;
        text-align: center;
        margin-left: 15%;
    }

    ul.footeraddress {
        margin-left: 5%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: -15%;
        direction: ltr;
    }

    #Chipsipgimg {
        margin-bottom: -10%;
    }

    #cocoacoatingpgimg {
        scale: 1;
    }

    #concentradepgimg {
        margin-top: 10%;
    }

    #cakegelpgimg {
        margin-top: 10%;
    }

    #velvetpgimg {
        margin-top: 15%;
    }

    #muffinpgimg {
        margin-top: 15%;
    }

    #spongepgimg {
        margin-top: 15%;
    }

    #WhippingCreampgimg {
        margin-top: 10%;
        margin-right: 20%;
        margin-left: -20%;
    }

    #fondantpgimg {
        margin-top: 15%;
    }

    #coldglazepgimg {
        margin-top: 15%;
    }

    div.notemasraf p {
        text-align: justify;
        margin-left: 0%;
    }

    #delipgimg {
        margin-top: 15%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 20%;
        margin-right: 30%;
        margin-left: 10%;
        margin-bottom: 15%;
    }

    #fruitfillingpgimg {
        margin-top: 5%;
    }

    #Chipsipgimg {
        margin-top: 0%;
        margin-right: -25%;
        margin-left: 25%;
        scale: 1.6;
        margin-bottom: -50%;
    }

    #cocoadrageimg {
        margin-top: 0%;
        scale: 1.2;
        margin-right: 15%;
        margin-bottom: -20%;
    }

    #cocoacoatingpgimg {
        margin-top: 10%;
        margin-bottom: 0%;
        margin-right: -25%;
        margin-left: 5%;
    }

    #cocoapistachioimg {
        margin-right: 20%;
        scale: 1.2;
        margin-top: -25%;
        margin-bottom: 0%;
    }

    #Hazelnutcocoaimg {
        margin-right: 15%;
        scale: 1;
        margin-top: -20%;
        margin-bottom: 0%;
    }

    #creamBiscuitsimg {
        margin-right: 20%;
        scale: 1;
        margin-top: -20%;
        margin-bottom: -5%;
    }

    #compoundch1 {
        margin-right: -40%;
    }

    #compoundch2 {
        margin-right: -40%;
    }

    #compoundch3 {
        margin-right: -40%;
    }

    #compoundch4 {
        margin-right: -35%;
    }

    #coinchocopgimg {
        scale: 2.3;
        margin-top: 25%;
        margin-right: 10%;
        margin-left: 30%;
        margin-bottom: -20%;
    }

    #concentradeimg {
        margin-top: -13%;
        scale: 0.5;
        margin-right: 15%;
        margin-bottom: -25%;
    }

    #cakegelimg {
        margin-top: -25%;
        scale: 1;
        margin-right: 20%;
        margin-bottom: -20%;
    }

    #velvetimg {
        margin-top: -40%;
        scale: 0.6;
        margin-bottom: -40%;
        margin-right: 15%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.6;
        margin-bottom: -35%;
        margin-right: 15%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.5;
        margin-right: -15%;
        margin-bottom: -10%;
    }

    #Fondantpimg {
        margin-top: -35%;
        margin-right: 15%;
        scale: 0.7;
        margin-bottom: -15%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -35%;
        margin-right: 15%;
        scale: 70%;
        margin-bottom: -20%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: -30%;
    }

    #muffinimg {
        margin-top: -45%;
        scale: 0.45;
        margin-bottom: -45%;
        margin-right: 15%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 15px;
        padding-left: 30%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: -15px;
        direction: ltr;
        padding-left: 31%;
    }

    div.notemasrafp ul {
        padding-right: 21%;
    }

    p.masrafp {
        margin-right: 20%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: -6%;
        margin-right: 5%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 124%;
        text-align: -webkit-center;
        margin-right: -12%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-right: 15%;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 3%;
        margin-right: -5%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 102%;
        text-align: -webkit-center;
        margin-right: -1%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 5%;
        direction: ltr;
        margin-right: -5%;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 76%;
        margin-right: 10%;
    }

    div.footer {
        padding-top: 187px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.09;
        height: 530px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
    }

    .header-icons ul li {
        font-size: 21px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -12%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xx-large;
        margin-bottom: 8%;
        font-weight: 900;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 20%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 16px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 16px;
        margin-left: -10%;
    }

    div.tm-education-content h3 {
        font-size: 30px;
        margin-right: -6%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -70%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: xx-large;
        margin-right: 155%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: larger;
        direction: ltr;
        margin-left: -20%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.7;
        margin-top: 8%;
        margin-bottom: 32%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 33.5px;
        font-size: 17px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -10%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 25px;
        margin-left: -20%;
        margin-right: -20%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        margin-top: 60%;
        font-weight: 900;
    }

    p.proship {
        font-size: 26px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: xxx-large;
    }

    .tm-section-title p {
        margin-bottom: -43%;
        font-size: 25px;
        margin-right: -19%;
        margin-left: -19%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 15%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1595px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.8;
        margin-right: -24%;
        margin-top: -5%;
        width: 23%;
        line-height: 50px;
        height: 50px;
        text-align: center;
        font-size: smaller;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.95;
        margin-top: 29%;
        margin-left: 59%;
        margin-right: -40%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 160%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 6%;
        margin-top: 1%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 18px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 113%;
        margin-left: -88%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 56%;
        font-size: 25px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        margin-right: 0%;
        font-size: 20px;
        direction: ltr;
        line-height: 26px;
        text-align: justify;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: 0%;
    }

    div.tm-about-content h2 {
        font-size: 70px;
        direction: ltr;
        margin-left: -5%;
        margin-right: -10%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 75%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 5%;
    }

    .notemasrafp {
        padding-top: 10%;
        direction: ltr;
        margin-left: 17%;
        margin-right: 5%;
    }

    #masrafnote {
        font-size: 20px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 3100px) and (max-width: 3199px) {
    p.footer-copyright span {
        font-size: 18px;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 29%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #gallerytitleRU {
        margin-left: 10%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-right: -40%;
        width: 185%;
        font-size: 54px;
    }

    #drageeh2RU {
        width: 174%;
        margin-right: -28%;
    }

    #cocoacoatingh2RU {
        font-size: 52px;
    }

    #HazelnutCocoaCreamlableRU {
        margin-right: -34%;
        width: 180%;
    }

    #compundchocoh2RU {
        margin-right: -40%;
        width: 186%;
    }

    #concentradeimgRU {
        margin-top: -5%;
        scale: 1.3;
        margin-right: -50%;
        margin-bottom: 5%;
        background: unset;
    }

    #MuffinCakeMixh2RU {
        width: 188%;
        margin-left: -16%;
        margin-right: -42%;
    }

    #SpongeCakeMixh2RU {
        width: 185%;
        margin-right: -40%;
    }

    #FruityPastryFillingh2RU {
        padding-left: 0;
        margin-right: -55%;
    }

    p#pweightRU.pweight {
        margin-left: 162px;
    }

    #proimgRU {
        margin-top: 10%;
        scale: 1.15;
    }

    .tm-parallax.parallaxRU {
        height: 315px;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -10%;
    }

    #eduh3RU {
        font-size: 22px;
    }

    p#techpRU {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 104%;
        margin-left: -87%;
        padding-bottom: 6%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.8;
        margin-right: -18%;
        margin-top: -20%;
        width: 24%;
        line-height: 45px;
        height: 50px;
        text-align: center;
        font-size: 26px;
    }

    #drageeh2 {
        margin-right: -25%;
        width: 170%;
    }

    #cocoacoatingh2 {
        margin-right: -25%;
        font-size: 54px;
        width: 171%;
    }

    #cocoapistah2 {
        margin-right: -50%;
        width: 195%;
    }

    #HazelnutCocoaCreamlable {
        margin-right: -20%;
    }

    #Compoundchocolateimg {
        margin-bottom: -35%;
        margin-top: 10%;
        scale: 1.1;
        margin-right: 25%;
        margin-left: -40%;
    }

    div.notemasrafp ul li {
        margin-left: -15px;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 17px;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 10%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    nav.tm-navigation {
        margin-left: -6%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 52%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 16%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    img#socialicon.iconcontactustop {
        margin-left: -5px;
    }

    img#callicon.iconcontactustop {
        margin-left: -4px;
    }

    img#emailicon.iconcontactustop {
        margin-left: -10px;
    }

    #addressspan {
        margin-left: 10%;
    }

    #emailspan {
        margin-left: 13%;
    }

    #callspan {
        margin-left: 8%;
    }

    #socialspan {
        margin-left: 10%;
    }

    #Drageepgimg {
        margin-top: -5%;
        margin-bottom: 35%;
    }

    #cocoacoatingpgimg {
        margin-top: -5%;
        margin-bottom: 35%;
        margin-right: -7%;
        margin-left: 15%;
    }

    #fondantpgimg {
        margin-top: 0;
        margin-left: 15%;
        margin-right: 0;
    }

    #coldglazepgimg {
        margin-top: 0;
        margin-right: 0%;
        margin-left: 20%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    div.tm-funfact-content div {
        margin-right: 2%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.single-widget.widget-quicklinks ul {
        margin-left: -10%;
    }

    #emailfield {
        margin-left: -1%;
    }

    img#aboutusimgp1.wow {
        margin-right: -65%;
        scale: 1.38;
        margin-top: 21%;
    }

    #cocoacoatingimg {
        margin-top: -5%;
        scale: 1.3;
    }

    #DeliCreampimg {
        margin-top: -30%;
        margin-right: -45%;
        scale: 1;
        margin-bottom: -20%;
    }

    #fruitfillingpgimg {
        scale: 1.7;
        margin-top: -10%;
        margin-right: 30%;
        margin-left: -20%;
        margin-bottom: 10%;
    }

    #creamfillingpgimg {
        margin-top: -5%;
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: 5%;
    }

    div.tm-education-image {
        scale: 95%;
        margin-top: 10%;
        margin-left: 10%;
        margin-right: -5%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 29%;
        background: white;
    }

    div.tm-form-field textarea {
        width: 37%;
        height: 200px;
        direction: ltr;
    }

    div.tm-form-field input {
        width: 35%;
        padding-left: 2%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 33%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 260px;
        line-height: normal;
    }

    .notemasraf {
        padding-right: 19%;
        padding-left: 14%;
        background-color: white;
        font-size: 20px;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
        direction: ltr;
    }

    .footer-copyrightsocial {
        margin-left: 27%;
    }

    ul.footeraddress {
        margin-left: 0%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    h1.productlable {
        text-align: center;
        margin-top: 65%;
        width: 20%;
        margin-right: 40%;
        font-size: 80px;
        font-family: 'Diodrumen';
    }

    #Chipsipgimg {
        margin-top: 0%;
        margin-right: -20%;
        margin-left: 15%;
        scale: 1.6;
        margin-bottom: -60%;
    }

    #cocoadrageimg {
        margin-right: -45%;
        margin-top: 5%;
        scale: 1.6;
        margin-bottom: -30%;
    }

    #cocoacoatingpgimg {
        margin-top: 5%;
        margin-bottom: 5%;
        margin-right: -30%;
        margin-left: 0%;
    }

    #cocoapistachioimg {
        margin-right: -40%;
        scale: 1.6;
        margin-top: -20%;
        margin-bottom: -5%;
    }

    #Hazelnutcocoaimg {
        margin-right: -50%;
        margin-top: -25%;
        scale: 1.5;
        margin-bottom: 0%;
    }

    #creamBiscuitsimg {
        margin-right: -40%;
        margin-top: -20%;
        scale: 1.4;
        margin-bottom: -5%;
    }

    #compoundch1 {
        margin-right: -40%;
    }

    #compoundch2 {
        margin-right: -40%;
    }

    #compoundch3 {
        margin-right: -40%;
    }

    #compoundch4 {
        margin-right: -35%;
    }

    #coinchocopgimg {
        scale: 1.2;
        margin-top: 0;
        margin-right: -15%;
        margin-left: 0%;
        margin-bottom: -50%;
    }

    #concentradeimg {
        margin-top: -7%;
        scale: 0.7;
        margin-right: -47%;
        margin-bottom: -35%;
    }

    #cakegelimg {
        margin-top: -30%;
        scale: 1.4;
        margin-right: -40%;
        margin-bottom: -20%;
    }

    #velvetimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -45%;
        margin-right: -45%;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -35%;
        margin-right: -50%;
    }

    #Whippingimg {
        margin-top: -15%;
        scale: 0.85;
        margin-right: -38%;
        margin-bottom: -10%;
    }

    #Fondantpimg {
        margin-top: -30%;
        margin-right: -25%;
        scale: 1.2;
        margin-bottom: -5%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 5%;
        padding-left: 29%;
        padding-right: 28%;
        margin-right: 5%;
    }

    #ColdGlazepimg {
        margin-top: -20%;
        margin-right: -20%;
        scale: 1.4;
        margin-bottom: -10%;
    }

    #fruitypastryfiilingimg {
        margin-top: -35%;
        margin-right: -45%;
        scale: 1.1;
        margin-bottom: -15%;
    }

    #muffinimg {
        margin-top: -40%;
        scale: 0.7;
        margin-bottom: -50%;
        margin-right: -45%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 34px;
        padding-left: 29%;
        padding-right: 28%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -6%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 30%;
        direction: ltr;
    }

    p.masrafp {
        margin-right: 20%;
    }

    p.negahdari {
        margin-right: 0;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 3%;
        margin-right: -5%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 102%;
        text-align: -webkit-center;
        margin-right: 0%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        list-style-type: none;
        text-align: justify;
        font-size: 18px;
        margin-left: 6%;
        direction: ltr;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 90%;
        margin-right: 3%;
    }

    div.footer {
        padding-top: 200px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.1;
        height: 535px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.2;
        margin-left: -4%;
    }

    .header-icons ul li {
        font-size: 21px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 15px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -20%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -6%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: bold;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 19%;
        margin-right: 5%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 17px;
        font-family: 'Diodrumen';
        font-weight: 900;
        padding: 23px 10px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 17px;
        margin-left: -10%;
        margin-right: -20%;
    }

    div.tm-education-content h3 {
        font-size: 26px;
        margin-right: -3%;
        margin-top: 14%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -70%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: xx-large;
        margin-right: 155%;
        margin-top: -25%;
        padding-top: 10%;
    }

    div.tm-about-content h3 {
        font-size: larger;
        direction: ltr;
        margin-left: -30%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 100%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.8;
        margin-top: 8%;
        margin-bottom: 31%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 27.5px;
        font-size: 20px;
        direction: ltr;
    }

    div.header-logo {
        margin-left: -15%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 25px;
        margin-left: -30%;
        margin-right: -15%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 8%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 50px;
        font-weight: 900;
    }

    p.proship {
        font-size: 26px;
        margin-right: 1%;
        margin-left: 1%;
        direction: ltr;
        text-align: justify;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 20%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
        padding-right: 5%;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: xx-large;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        font-size: 25px;
        margin-right: -30%;
        margin-left: -30%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: cover;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 15%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 10px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1640px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.8;
        margin-right: -18%;
        margin-top: -7%;
        width: 24%;
        line-height: 45px;
        height: 50px;
        text-align: center;
        font-size: 26px;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1;
        margin-top: 18%;
        margin-left: -35%;
        margin-right: 20%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 163%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 6%;
        margin-top: 1%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 20px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 106%;
        margin-left: -86%;
        padding-bottom: 11%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 43%;
        font-size: 28px;
    }

    div.tm-testimonial {
        width: 100%;
        margin-right: 5%;
        font-size: 20px;
        direction: ltr;
        margin-top: 3%;
        padding-right: 5%;
        text-align: justify;
        line-height: 27px;
    }

    .productimginpage {
        width: 70%;
        margin: 3%;
        border-radius: 3%;
        margin-right: 0%;
    }

    div.tm-about-content h2 {
        font-size: 58px;
        direction: ltr;
        width: 165%;
        padding-left: 37%;
        margin-right: -20%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 40%;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 78%;
        background-position-y: 45%;
        position: relative;
        background-position-x: 0%;
        margin-left: -2%;
    }

    .notemasrafp {
        padding-top: 10%;
        margin-left: 24%;
        padding-left: 15px;
    }

    #masrafnote {
        font-size: large;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
    }

}

@media only screen and (min-width: 3200px) {
    #ColdGlazeh2RU {
        margin-top: 32%;
        margin-left: 2%;
    }

    #ToffeeFillingCreamh2RU {
        margin-top: 31%;
        margin-left: 3%;
    }

    #fruitfillingh2RU {
        margin-top: 33%;
        margin-left: 5%;
    }

    .tm-form-fieldRU {
        margin-top: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    div.tm-form-fieldRU input {
        width: 28%;
        padding-left: 2%;
    }

    #addressspanRU {
        margin-left: 10%;
        font-weight: 600;
    }

    #contactusulRU {
        list-style-type: none;
        text-align: justify;
        font-size: small;
    }

    .iconcontactusRU {
        scale: 0.6;
        margin-left: 0%;
        margin-right: -2%;
    }

    #callspanRU {
        margin-left: 6%;
        font-weight: 600;
    }

    #emailspanRU {
        margin-left: 2%;
        font-weight: 600;
    }

    #contactusulRU {
        font-size: 16px;
        direction: ltr;
        margin-left: 0%;
    }

    #abtusRU {
        margin-top: 25%;
    }

    #gallerytitleRU {
        margin-left: 10%;
        margin-top: -5%;
    }

    #chipsih2RU {
        margin-left: 5%;
        margin-top: 32%;
    }

    #drageeh2 {
        margin-left: 5%;
        margin-top: 33%;
    }

    #drageeh2RU {
        margin-left: 5%;
        margin-top: 32%;
    }

    #cocoacoatingh2RU {
        font-size: 52px;
    }

    #concentradeimgRU {
        margin-top: 0%;
        scale: 1.5;
        margin-right: -25%;
        margin-bottom: 5%;
        background: unset;
    }

    #MuffinCakeMixh2RU {
        margin-top: 30%
    }

    p#pweightRU.pweight {
        margin-left: 125px;
    }

    #proimgRU {
        margin-top: 7%;
    }

    .tm-parallax.parallaxRU {
        height: 315px;
    }

    div.header-icons.RUhdrico {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
        margin-right: -15%;
    }

    #eduh3RU {
        font-size: 26px;
    }

    #techpRU {
        font-family: diodrumen;
        font-size: 17px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 115%;
        margin-left: -88%;
        padding-bottom: 7%;
        direction: ltr;
    }

    a.tm-button.aboutusbtn.RUabtusbtn {
        scale: 0.7;
        margin-right: 10%;
        margin-top: -5%;
        width: 24%;
        font-size: smaller;
        line-height: 65px;
        text-align: center;
    }

    img#aboutusimgp1.wow.RUabtusimg {
        margin-right: -26%;
        scale: 1.65;
        margin-top: 60%;
    }

    #chipsih2 {
        margin-right: -20%;
        margin-top: 31%;
    }

    #cocoapistah2 {
        margin-top: 30%;
    }

    #Compoundchocolateimg {
        margin-bottom: -20%;
        margin-top: 0%;
        scale: 1.3;
    }

    #SpongeCakeMixh2 {
        margin-top: 30%;
    }

    #fondanth2 {
        margin-top: 30%;
    }

    div.notemasrafp ul li {
        margin-left: -1%;
    }

    #ToffeeFillingCreamh2 {
        margin-top: 30%;
    }

    div.ImgBanner {
        min-height: 700px;
        position: relative;
        z-index: 0;
    }

    .tm-funfact-content h5 {
        color: #000000;
        margin-bottom: 0;
        font-family: 'Diodrumen';
        font-size: 18px;
    }

    div.tm-section.services-area.tm-padding-section.chocolate {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder2.png);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 10%;
        padding-bottom: 14%;
        margin-bottom: -15%;
    }

    #srchbox {
        height: 25px;
        margin-top: -3%;
        background: lightgray;
    }

    nav.tm-navigation {
        margin-left: -2%;
    }

    div.tm-section.services-area.tm-padding-section.sweets {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Assetborder1.png);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: top;
        background-position-y: 16%;
        padding-bottom: 10%;
        margin-bottom: -10%;
    }

    #footersec2 {
        padding-bottom: 45px;
    }

    .tm-navigation ul {
        margin-bottom: 0;
        padding-right: 0;
        font-size: 0px;
        float: left;
        margin-left: 5%;
    }

    img#socialicon.iconcontactustop {
        margin-left: -5px;
    }

    img#callicon.iconcontactustop {
        margin-left: -4px;
    }

    img#emailicon.iconcontactustop {
        margin-left: -10px;
    }

    #addressspan {
        margin-left: 10%;
        font-weight: 600;
    }

    #emailspan {
        margin-left: 13%;
        font-weight: 600;
    }

    #callspan {
        margin-left: 8%;
        font-weight: 600;
    }

    #socialspan {
        margin-left: 10%;
        font-weight: 600;
    }

    #Drageepgimg {
        margin-top: -5%;
        margin-bottom: 35%;
    }

    #cocoacoatingpgimg {
        margin-top: -5%;
        margin-bottom: 0%;
        margin-right: -10%;
        margin-left: -20%;
    }

    #fondantpgimg {
        margin-top: 0;
        margin-left: 15%;
        margin-right: 0;
    }

    #coldglazepgimg {
        margin-top: 0;
        margin-right: 0%;
        margin-left: 20%;
    }

    div.tm-funfact-content h5 {
        font-weight: 900;
        padding-left: 2px;
    }

    div.tm-funfact-content div {
        margin-right: 2%;
    }

    div.tm-funfact-content {
        display: contents;
    }

    div.row.edubg {
        margin-left: -3%;
        margin-right: -3%;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    div.tm-education-content {
        margin-right: 12%;
        text-align: justify;
        margin-top: 12%;
        margin-left: 0%;
    }

    div.footer-copyrightsocial {
        margin-left: 27%;
    }

    div.single-widget.widget-quicklinks ul {
        margin-left: -4%;
    }

    #emailfield {
        margin-left: -1%;
    }

    div.tm-education-image {
        scale: 100%;
        margin-top: 13%;
        margin-left: 13%;
    }

    #msgsndbt {
        width: 8%;
        height: 30px;
        font-size: small;
        line-height: 0px;
        margin-right: 27%;
        background: white;
    }

    div.tm-form-field input {
        width: 34%;
        padding-left: 2%;
    }

    div.tm-form-field textarea {
        width: 35%;
        height: 200px;
        direction: ltr;
    }

    img#aboutusimgp1.wow {
        margin-right: -26%;
        scale: 1.65;
        margin-top: 57%;
    }

    #Chipsipgimg {
        margin-top: 15%;
        margin-right: -10%;
        margin-left: 25%;
        scale: 1.9;
        margin-bottom: -50%;
    }

    #cocoadrageimg {
        margin-top: 5%;
        scale: 1.7;
        margin-bottom: -30%;
        margin-right: -20%;
    }

    #cocoapistachioimg {
        margin-top: 5%;
        scale: 1.7;
        margin-bottom: -5%;
        margin-right: -25%;
    }

    #Hazelnutcocoaimg {
        margin-top: 0%;
        scale: 1.7;
        margin-bottom: 5%;
        margin-right: -25%;
    }

    #creamBiscuitsimg {
        margin-top: 5%;
        scale: 1.4;
        margin-bottom: 0%;
        margin-right: -20%;
    }

    #compoundch4 {
        transform: rotate(-65deg);
        margin-top: -135%;
        position: relative;
        z-index: 1;
        margin-right: -10%;
    }

    #compoundch3 {
        transform: rotate(-40deg);
        margin-top: -110%;
        position: relative;
        z-index: 2;
        margin-right: -15%;
    }

    #compoundch1 {
        transform: rotate(0deg);
        position: relative;
        z-index: 4;
        margin-right: -15%;
        margin-top: 30%;
    }

    #compoundch2 {
        transform: rotate(-20deg);
        margin-top: -85%;
        position: relative;
        z-index: 3;
        margin-right: -15%;
    }

    #coinchocopgimg {
        scale: 1.5;
        margin-top: 15%;
        margin-right: -10%;
        margin-left: 15%;
        margin-bottom: -45%;
    }

    #cakegelimg {
        margin-top: -25%;
        scale: 1.4;
        margin-right: -15%;
        margin-bottom: -15%;
    }

    #velvetimg {
        margin-top: -25%;
        scale: 0.85;
        margin-bottom: -45%;
        margin-right: -20%;
    }

    #muffinimg {
        margin-top: -35%;
        scale: 0.7;
        margin-bottom: -50%;
        margin-right: -20%;
    }

    #spongeimg {
        margin-top: 0%;
        scale: 0.8;
        margin-bottom: 5%;
        margin-right: -25%;
    }

    #Whippingimg {
        margin-top: -10%;
        scale: 0.9;
        margin-right: -20%;
        margin-bottom: -5%;
    }

    #Fondantpimg {
        margin-top: -25%;
        margin-right: -25%;
        scale: 1.2;
        margin-bottom: -15%;
    }

    #delipgimg {
        margin-top: 15%;
        margin-right: 20%;
        margin-left: 5%;
        scale: 1.6;
        margin-bottom: -5%;
    }

    #fruitypastryfiilingpgimg {
        margin-top: 15%;
        margin-right: -25%;
        margin-left: 45%;
        margin-bottom: 0%;
        scale: 1.6;
    }

    #creamfillingpgimg {
        margin-top: 0%;
        margin-right: 5%;
        margin-left: 15%;
        scale: 1.2;
        margin-bottom: 0%;
    }

    .tm-parallax {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        height: 295px;
        line-height: normal;
    }

    #fruitfillingpgimg {
        margin-top: 0%;
        scale: 1.9;
        margin-bottom: 5%;
        margin-left: -20%;
        margin-right: 35%;
    }

    .notemasraf {
        margin-right: -17px;
        padding-right: 20%;
        padding-left: 20%;
        background-color: white;
        font-size: larger;
        text-align: justify;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: top;
        background-position-y: 1%;
        direction: ltr;
    }

    div.tm-about-content {
        padding-right: 2%;
        margin-left: -15%;
    }


    p.footer-copyright span {
        padding-left: 0;
        margin-left: -10%;
        font-size: 17px;
    }

    .footer-copyrightsocial ul {
        padding-right: 0;
        margin-bottom: 10px;
        padding-left: 0px;
    }

    ul.footeraddress {
        margin-left: 0%;
        list-style-type: none;
        text-align: justify;
        font-size: 14px;
        margin-right: 0%;
        direction: ltr;
    }

    #spongeimg {
        margin-top: -35%;
        scale: 0.8;
        margin-bottom: -35%;
    }

    h3#gallerytitle {
        margin-top: -7%;
        margin-bottom: 3%;
        margin-right: 35%;
    }

    #concentradeimg {
        margin-top: -3%;
        scale: 0.7;
        margin-right: -30%;
        margin-bottom: -30%;
    }

    p.masrafp {
        margin-right: 21%;
        font-size: 20px;
    }

    #cocoacoatingimg {
        margin-top: 5%;
        scale: 1.2;
        margin-right: -10%;
        margin-bottom: 2%;
    }

    p.negahdari {
        margin-right: 0;
        font-size: 20px;
    }

    #ColdGlazepimg {
        margin-top: -20%;
        margin-right: -30%;
        scale: 1.2;
        margin-bottom: -10%;
    }

    div.row.prolistitem {
        background-color: #ffffff;
        padding: 10%;
        justify-content: left;
        text-align: center;
        direction: ltr;
        margin-left: 25px;
        padding-left: 30%;
        padding-right: 33%;
    }

    .prolistitemspan {
        text-align: left;
        margin-top: -5%;
        font-size: large;
        font-weight: 600;
        margin-bottom: -10%;
        margin-left: 30%;
        direction: ltr;
        padding-left: 20px;
    }

    div.notemasrafp ul {
        padding-right: 1%;
        margin-right: 21%;
    }

    #creamfilling6 {
        margin-top: -80%;
        margin-right: -1%;
        scale: 0.8;
    }

    #creamfilling13 {
        margin-top: -30%;
        margin-right: -28%;
        scale: 0.9;
    }

    .iconcontactus {
        scale: 0.6;
        margin-left: 3%;
        margin-right: -5%;
    }

    #contactuscadr {
        margin-top: -10%;
        position: relative;
        z-index: 0;
        width: 100%;
        text-align: -webkit-center;
        margin-right: 0%;
    }

    #contactuscadrin {
        background-color: white;
        height: 390px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/asset5.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-y: 100%;
    }

    #contactusul {
        font-size: 17px;
        direction: ltr;
        margin-left: 5%;
    }

    .footerlink {
        font-size: medium;
        margin-left: -16%;
    }

    div.footer-copyrightsocial hr {
        width: 89%;
        margin-right: 7%;
    }

    div.footer {
        padding-top: 200px;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset5.png);
        background-position: top;
        background-size: 90%;
        background-repeat: no-repeat;
    }

    .widget-quicklinks ul li a {
        font-size: 14px;
    }

    div.row.edubg {
        scale: 1.08;
        height: 565px;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible {
        scale: 1.5;
    }

    .header-icons ul li {
        font-size: 21px;
    }

    #MobileSlider {
        display: none;
    }

    div.blog-slider-item {
        padding-bottom: 16%;
    }

    #Socialp {
        text-align: center;
        font-size: 14px;
        margin-right: 13px;
        padding-left: 0px;
    }

    div.tm-section.about-us-area.tm-padding-section3.educationsection {
        margin-top: -21%;
    }

    div.tm-blog-content {
        margin-right: 20%;
        margin-left: 34%;
        margin-top: 12%;
    }

    div.tm-buttongroup.sliderbtn {
        margin-right: -50%;
        margin-left: -6%;
        margin-top: 10%;
    }

    div.carousel-caption.d-block.d-md-block {
        right: auto;
        left: 50%;
        bottom: 60%;
    }

    div.carousel-caption.d-block.d-md-block p {
        font-size: xxx-large;
        margin-top: -5%;
    }

    div.carousel-caption.d-block.d-md-block h5 {
        font-size: xxx-large;
        margin-bottom: 8%;
        font-weight: bold;
    }

    .tm-about-image img {
        width: 100%;
        margin-top: 19%;
        margin-right: 5%;
    }

    .tm-navigation ul li a {
        display: inline-block;
        font-size: 18px;
        font-family: 'Diodrumen';
        font-weight: 500;
        padding: 23px 13px;
        color: #231f20;
        text-transform: uppercase;
        text-decoration: unset;
        font-weight: 900;
    }

    p.footer-copyright {
        font-size: 15px;
    }

    img.iconsocialfooter {
        scale: 0.6;
    }

    #Socialp {
        text-align: center;
        font-size: 13px;
        margin-right: 5px;
    }

    ul.footeraddress li p {
        font-size: 17px;
        margin-left: -10%;
        margin-right: -20%;
    }

    div.tm-education-content h3 {
        font-size: 30px;
        margin-right: -3%;
        margin-top: -1%;
    }

    #footerlogosec {
        margin-right: -10%;
        scale: 1.7;
        margin-top: 6%;
    }

    div.single-widget.widget-quicklinks {
        margin-right: -70%;
        width: 100%;
        direction: ltr;
    }

    .tm-blog-content h3 {
        font-size: xx-large;
        margin-right: 188%;
        margin-top: -25%;
        padding-top: 10%;
        direction: ltr;
    }

    div.tm-about-content h3 {
        font-size: xxx-large;
        direction: ltr;
        margin-left: -30%;
    }

    .productsec {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset37.png);
        background-size: 100%;
        background-position-y: 90%;
        background-repeat: no-repeat;
    }

    div.row.mt-30-reverse.proimg {
        scale: 0.9;
        margin-top: 10%;
        margin-bottom: 34%;
    }

    div.tm-service-content span {
        font-size: x-large;
    }

    div.tm-education-content p {
        line-height: 28.5px;
        font-size: 20px;
        direction: ltr;
        margin-top: 5%;
    }

    div.header-logo {
        margin-right: -5%;
        scale: 0.8;
        margin-top: 5%;
        margin-left: -21%;
    }

    div.header-icons {
        padding-left: 0px;
        padding-right: 0px;
        scale: 1;
        margin-top: 2%;
    }

    div.header-mobilemenu.clearfix {
        margin-left: -10%;
    }

    .tm-section-title h2,
    .tm-section-title h3 {
        margin-top: 0px;
        font-weight: 100;
        margin-bottom: 10px;
        color: #000;
        font-size: xxx-large;
    }

    .tm-about-content p {
        text-align: justify;
        margin-top: 0px;
        font-size: 25px;
        margin-left: -30%;
        margin-right: 15%;
        direction: ltr;
    }

    .heroslider-content h1 span {
        display: block;
        letter-spacing: 0px;
        margin-right: 8%;
        font-size: 50px;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-color: #eff0f0;
        padding-bottom: 3%;
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/bgn.png);
        background-size: 20%;
        background-repeat: no-repeat;
        background-position-x: 90%;
        background-position-y: 5%;
    }

    h1.productlable {
        margin-right: 40%;
        font-size: 55px;
        margin-top: 66%;
        font-weight: 900;
    }

    p.proship {
        font-size: 26px;
        margin-right: 1%;
        margin-left: 1%;
        text-align: justify;
        direction: ltr;
    }

    h5.product-details-sweets {
        font-size: 17px;
    }

    .blog-slider-active .blog-slider-item {
        padding: 0px 90px;
        margin-top: 30%;
        margin-bottom: 20px;
    }

    .blog-slider-active>.slick-list {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: -30px;
        margin-bottom: 0px;
    }

    div.notemasraf p {
        text-align: justify;
    }

    h2,
    .h2 {
        font-size: 38px;
    }

    .heroslider-content h1 span {
        font-size: 60px;
    }

    .header-mobilemenu .mean-container a.meanmenu-reveal {
        margin-top: -50px;
    }

    div.header-logo img {
        scale: 0.7;
        padding-top: 10%;
    }

    .tm-service {
        padding: 0px 0px;
        height: 100%;
        margin: 5px;
    }

    #prolable {
        font-size: 40px;
    }

    .tm-section-title p {
        margin-bottom: -35%;
        font-size: 25px;
        margin-right: -40%;
        margin-left: -40%;
        text-align: justify;
        direction: ltr;
    }

    .productsec {
        background-size: 100%;
    }

    div.tm-section.services-area.tm-padding-section5.productsec {
        margin-bottom: -10%;
    }

    div.tm-section.about-us-area.tm-padding-section4.aboutusareasection {
        background-size: 15%;
        background-position-x: 10%;
    }

    div.tm-about-content {
        margin-top: 15%;
        padding: 0px;
        font-size: xx-large;
    }

    .tm-buttongroup .tm-button {
        scale: 0.7;
        margin-top: -3%;
        margin-right: 36%;
    }

    div.tm-section.blogs-area.tm-padding-section2 {
        background-size: contain;
        background-repeat: no-repeat;
        height: 1718px;
        background-position-x: center;
    }

    div.blog-slider-item.slick-slide.slick-current.slick-active {
        font-size: smaller;
    }

    div.blog-slider-active.tm-slider-arrow.tm-slider-arrow-hovervisible.slick-initialized.slick-slider {
        display: unset;
    }

    a.tm-button.techbutton {
        scale: 0.7;
    }

    a.tm-button.aboutusbtn {
        scale: 0.7;
        margin-right: 10%;
        margin-top: 0%;
        width: 24%;
        font-size: smaller;
        line-height: 65px;
        text-align: center;
    }

    div.tm-about-image {
        margin-bottom: 13%;
        scale: 1.1;
        margin-top: -5%;
        margin-left: 0%;
        margin-right: 2%;
    }

    #logofooter {
        scale: 0.7;
        margin-right: 163%;
        margin-top: -40%;
        margin-bottom: 10%;
    }

    div.col-lg-2.col-md-6.col-4.footerlink {
        margin-top: 0%;
        margin-right: 3%;
        margin-bottom: 0%;
    }

    #location {
        margin-right: 12%;
        margin-bottom: 9%;
        margin-top: 5%;
        scale: 1.2;
    }

    div.footer-copyrightarea {
        margin-right: 0%;
    }

    ul.footeraddress li {
        margin-bottom: 30px;
    }

    div.tm-blog-content p {
        font-family: diodrumen;
        font-size: 17px;
        padding-right: 0%;
        padding-left: 0%;
        margin-top: 0%;
        margin-right: 116%;
        margin-left: -88%;
        padding-bottom: 7%;
        direction: ltr;
    }

    .tm-button,
    a.tm-button,
    button.tm-button {
        font-weight: 100;
        letter-spacing: 0;
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        padding: 0px 15px;
        width: 55%;
    }

    a.tm-button.techbutton {
        margin-right: 53%;
        width: 56%;
    }

    a.tm-button.sliderbtn {
        width: 43%;
        font-size: 28px;
        line-height: 60px;
    }

    div.tm-testimonial {
        width: 100%;
        margin: 3%;
        font-size: 20px;
        direction: ltr;
        padding-right: 5%;
        text-align: justify;
        line-height: 27px;
        margin-right: 5%;
    }

    .productimginpage {
        width: 80%;
        margin: 3%;
        border-radius: 3%;
        margin-right: 1%;
    }

    div.tm-about-content h2 {
        font-size: 54px;
        padding-left: 10%;
        width: 165%;
    }

    .pweight {
        margin-left: 98px;
        font-weight: 900;
    }

    div.prolistitemspan ul li span {
        display: inline-flex;
    }

    .ppack {
        margin-left: 75px;
        font-weight: 900;
    }

    .propgbg {
        background-image: url(/wp-content/themes/RoozbehChocolate/assets/images/bg/Asset01.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-y: 50%;
        position: relative;
        background-position-x: 15%;
        margin-left: -5%;
    }

    .notemasrafp {
        padding-top: 10%;
        margin-left: 18%;
        margin-right: 4%;
    }

    #masrafnote {
        font-size: 20px;
        font-weight: 900;
    }

    div.tm-about-content.productp3 {
        margin-top: -20%;
        padding: 25px;
        font-size: xx-large;
        direction: ltr;
    }

}