/* Theme Colours Start */
[data-theme="light"] {
	--menu-bg: #031d5e;
	--menu-text: #f7f7f7;
	
	--main-bg: #F7f7f7;
	--alt-bg: #eff1fd;
	--bg-one: #FDFDFE;
	--bg-two: #F7F9FF;
	--bg-three: #FCFCFD;
	--bg-four: #F9F9FB;
	
	--grad1-e: #f7f7f7;
	--grad1-d: #f6f5f8;
	--grad1-c: #f4f4fa;
	--grad1-b: #f2f2fb;
	--grad1-a: #eff1fd;
	--grad1-text: #082134;
	
	--text-one: #082134;
	--text-two: #62636C;
	--text-three: #1D2E5C;
	--text-four: #395BC7;
	
	--border-one: #D8D9E0;
	--border-two: #CDCED7;
	--border-three: #B9BBC6;
	--border-four: #BDD1FF;
	--border-five: #A6BFF9;
	--border-six: #87A5EF;
	
	--main-one: #3D63DD;
	--main-two: #3657C3;
	--main-three: #8B8D98;
	--main-four: #80828D;
	
	--alt-one: #EDF2FE;
	--alt-two: #DFEAFF;
	--alt-three: #D0DFFF;
	--alt-four: #EFF0F3;
	--alt-five: #E7E8EC;
	--alt-six: #E0E1E6;
}

[data-theme="dark"] {
	--menu-bg: #09193d;
	--menu-text: #f6feff;
	
	--main-bg: #060316;
	--alt-bg: #09193d;
	--bg-one: #0C111C;
	--bg-two: #111725;
	--bg-three: #111113;
	--bg-four: #19191B;
	
	--grad1-a: #09193d;
	--grad1-b: #0c1533;
	--grad1-c: #0e1029;
	--grad1-d: #0c0a1f;
	--grad1-e: #060316;
	--grad1-text: #f6feff;
	
	--text-one: #f6feff;
	--text-two: #B2B3BD;
	--text-three: #D5E2FF;
	--text-four: #93B4FF;
	
	--border-one: #393A40;
	--border-two: #46484F;
	--border-three: #5F606A;
	--border-four: #2D4484;
	--border-five: #375098;
	--border-six: #405EB2;
	
	--main-one: #3D63DD;
	--main-two: #3F5CB0;
	--main-three: #6C6E79;
	--main-four: #797B86;
	
	--alt-one: #172448;
	--alt-two: #1D2E61;
	--alt-three: #243974;
	--alt-four: #222325;
	--alt-five: #292A2E;
	--alt-six: #303136;
}
/* Theme Colours End */
/* Main Style Start */
* {
	 font-family: "Poppins", "Roboto", Arial, sans-serif;
}
 @keyframes fadeIn {
	 from {
		 opacity: 0;
	}
	 to {
		 opacity: 1;
	}
}
body{
  background: var(--main-bg);
}
/* Main Style End */
/* Navbar Style Start */
 .dropdown-menu.show {
	 -webkit-animation: fadeIn 0.3s alternate;
	/* Safari 4.0 - 8.0 */
	 animation: fadeIn 0.3s alternate;
}
 .nav-item.dropdown.dropdown-mega {
	 position: static;
}
 .nav-item.dropdown.dropdown-mega .dropdown-menu {
	 width: 90%;
	 top: auto;
	 left: 5%;
}
 .navbar-toggler {
	 border: none;
	 padding: 0;
	 outline: none;
}
 .navbar-toggler:focus {
	 box-shadow: none;
}
 .navbar-toggler .hamburger-toggle {
	 position: relative;
	 display: inline-block;
	 width: 50px;
	 height: 50px;
	 z-index: 11;
	 float: right;
}
 .navbar-toggler .hamburger-toggle .hamburger {
	 position: absolute;
	 transform: translate(-50%, -50%) rotate(0deg);
	 left: 50%;
	 top: 50%;
	 width: 50%;
	 height: 50%;
	 pointer-events: none;
}
 .navbar-toggler .hamburger-toggle .hamburger span {
	 width: 100%;
	 height: 4px;
	 position: absolute;
	 background: var(--menu-text);
	 border-radius: 2px;
	 z-index: 1;
	 transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
	 left: 0px;
}
 .navbar-toggler .hamburger-toggle .hamburger span:first-child {
	 top: 10%;
	 transform-origin: 50% 50%;
	 transform: translate(0% -50%) !important;
}
 .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
	 top: 50%;
	 transform: translate(0, -50%);
}
 .navbar-toggler .hamburger-toggle .hamburger span:last-child {
	 left: 0px;
	 top: auto;
	 bottom: 10%;
	 transform-origin: 50% 50%;
}
 .navbar-toggler .hamburger-toggle .hamburger.active span {
	 position: absolute;
	 margin: 0;
}
 .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
	 top: 45%;
	 transform: rotate(45deg);
}
 .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
	 left: 50%;
	 width: 0px;
}
 .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
	 top: 45%;
	 transform: rotate(-45deg);
}
svg g.logo {
  fill: var(--menu-text); 
}

.navbar-nav li a {
	color: var(--menu-text) ! important;
}

.navbar-default, .dropdown-menu {
	background-color: var(--menu-bg) !important;
}

theme-switch {
  --theme-switch-icon-color: var(--icons-color);
  width: 1em;
  height: 1em;
}

#one {
  --one-icon-color: var(--menu-text);
  --theme-switch-icon-color: var(--menu-text);
  width: 1em;
  height: 1em;
  /* See https://gist.github.com/mahozad/a8114b6145cac721f7652aa7b0732cf6 */
  transition: --one-icon-color 200ms;
}

/* Navbar Style End */


/* Gradient Style Start */
.grad-1{
  background-image: linear-gradient(var(--menu-bg), var(--main-bg));
}
.grad-1 h1, .grad-1 p{
  color: var(--menu-text);
}
svg.text-one {
  fill: var(--menu-text); 
}
svg.logobig {
	width: 50%;
}
.bg-lines {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1154%26quot%3b)' fill='none'%3e%3cpath d='M -425.50904422424037%2c440 C -329.51%2c369.4 -137.51%2c97.2 54.49095577575964%2c87 C 246.49%2c76.8 342.49%2c359 534.4909557757596%2c389 C 726.49%2c419 822.49%2c212 1014.4909557757596%2c237 C 1206.49%2c262 1409.39%2c534.2 1494.4909557757596%2c514 C 1579.59%2c493.8 1450.9%2c211.6 1440%2c136' stroke='rgba(51%2c 121%2c 194%2c 0.08)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -818.5372834826233%2c78 C -722.54%2c139.4 -530.54%2c349.8 -338.5372834826233%2c385 C -146.54%2c420.2 -50.54%2c233.8 141.4627165173767%2c254 C 333.46%2c274.2 429.46%2c526.2 621.4627165173767%2c486 C 813.46%2c445.8 937.76%2c87 1101.4627165173767%2c53 C 1265.17%2c19 1372.29%2c263.4 1440%2c316' stroke='rgba(51%2c 121%2c 194%2c 0.08)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -161.36064076724102%2c438 C -65.36%2c376.8 126.64%2c157 318.639359232759%2c132 C 510.64%2c107 606.64%2c319.8 798.639359232759%2c313 C 990.64%2c306.2 1086.64%2c101.2 1278.639359232759%2c98 C 1470.64%2c94.8 1726.37%2c273.4 1758.639359232759%2c297 C 1790.91%2c320.6 1503.73%2c232.2 1440%2c216' stroke='rgba(218%2c 220%2c 238%2c 0.08)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -912.8739139709686%2c408 C -816.87%2c368.4 -624.87%2c212.2 -432.8739139709686%2c210 C -240.87%2c207.8 -144.87%2c395 47.1260860290314%2c397 C 239.13%2c399 335.13%2c239.4 527.1260860290314%2c220 C 719.13%2c200.6 824.55%2c291.6 1007.1260860290314%2c300 C 1189.7%2c308.4 1353.43%2c269.6 1440%2c262' stroke='rgba(218%2c 220%2c 238%2c 0.08)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -868.5257120236994%2c376 C -772.53%2c353.8 -580.53%2c269.6 -388.5257120236994%2c265 C -196.53%2c260.4 -100.53%2c358.4 91.47428797630062%2c353 C 283.47%2c347.6 379.47%2c206.2 571.4742879763006%2c238 C 763.47%2c269.8 877.77%2c512.2 1051.4742879763007%2c512 C 1225.18%2c511.8 1362.29%2c292 1440%2c237' stroke='rgba(51%2c 121%2c 194%2c 0.08)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -114.30619393213567%2c358 C -18.31%2c336.6 173.69%2c259.8 365.69380606786433%2c251 C 557.69%2c242.2 653.69%2c323.2 845.6938060678643%2c314 C 1037.69%2c304.8 1133.69%2c191.6 1325.6938060678644%2c205 C 1517.69%2c218.4 1782.83%2c404.8 1805.6938060678644%2c381 C 1828.56%2c357.2 1513.14%2c145 1440%2c86' stroke='rgba(218%2c 220%2c 238%2c 0.08)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1154'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
	background-size: cover;
	pointer-events: none;
}
/* Gradient Style End */


/* Main Div Style Start */

.main-section{
	background: var(--main-bg);
}
.main-section-text{
	color: var(--text-one);
}

/* Main Div Style Start */

/* Alt-bg Style Start */

.alt-section{
	background: var(--alt-bg);
}
.alt-section-text{
	color: var(--text-one);
}

/* Alt-bg Style Start */

/* Footer Style Start */
footer span{
	color: var(--text-one);
}
footer svg g.logo {
  fill: var(--text-one); 
}

/* Footer Style End */

.bgpattern {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1002%26quot%3b)' fill='none'%3e%3cpath d='M393.42 0C415.13 39.22 349.44 76.34 357.5 140C362.73 181.34 392.39 210 420 210C443.75 210 443.57 176.66 460.23 140C491.29 71.66 476.96 54.01 515.45 0C526.84 -15.99 537.72 0 560 0C585.79 0 586.96 -6.15 611.58 0C656.96 11.35 653.87 29.93 700 35C768.08 42.49 773.66 38.88 840 25.13C858.07 21.38 850.91 3.22 868.82 0C920.91 -9.35 924.41 0 980 0C1039.07 0 1044.99 -11.55 1098.13 0C1114.99 3.66 1105.45 30.43 1120 30.43C1145.55 30.43 1147.1 6.79 1178.33 0C1217.1 -8.43 1219.16 0 1260 0C1330 0 1330 0 1400 0C1470 0 1505 -35 1540 0C1575 35 1540 70 1540 140C1540 210 1540 210 1540 280C1540 350 1540 350 1540 420C1540 490 1575 525 1540 560C1505 595 1470 560 1400 560C1344.49 560 1288.97 583 1288.97 560C1288.97 527.48 1345.53 505.44 1400 448.97C1413.05 435.44 1419.86 437.81 1424 420C1439.5 353.33 1447.16 346.39 1439.27 280C1435.16 245.43 1425.11 218.08 1400 218.08C1365.22 218.08 1347.52 239.58 1319.5 280C1277.52 340.54 1289.75 350 1260 420C1260 420 1260 420 1260 420C1215.79 490 1224.95 506.63 1171.58 560C1154.95 576.63 1145.79 560 1120 560C1050 560 1050 560 980 560C921.66 560 919.99 565.86 863.33 560C849.99 558.62 853.31 548.06 840 545.52C771.65 532.5 765.15 523.36 700 528.89C679.81 530.6 689.31 555.56 669.32 560C619.31 571.11 614.66 560 560 560C490 560 490 560 420 560C350 560 350 560 280 560C210 560 210 560 140 560C70 560 35 595 0 560C-35 525 0 490 0 420C0 350 0 350 0 280C0 210 0 210 0 140C0 70 -35 35 0 0C35 -35 70 0 140 0C210 0 210 0 280 0C336.71 0 376.38 -30.78 393.42 0' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M420 351.43C378.37 351.43 321.18 385.72 321.18 420C321.18 454.28 378.37 488.57 420 488.57C447.31 488.57 459.07 454.28 459.07 420C459.07 385.72 447.31 351.43 420 351.43' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M60.45 140C81.37 78.66 39.87 45.78 65.88 0C79.64 -24.22 102.94 0 140 0C210 0 210 0 280 0C314.56 0 346.75 -22.07 349.11 0C354.25 47.93 279.25 77.79 295 140C314.69 217.79 423.96 218.66 420 280C416.46 334.8 345.84 321.4 280 372.27C255.25 391.4 238.82 392.62 238.82 420C238.82 468.99 240.26 494.29 280 525C330.85 564.29 420 551.12 420 560C420 568.62 350 560 280 560C250.84 560 250.2 564.64 221.67 560C180.2 553.25 180.01 537.21 140 537.21C113.39 537.21 115.68 555.56 88.42 560C45.68 566.96 17.11 587.1 0 560C-27.1 517.1 0 490 0 420C0 350 0 350 0 280C0 236.6 -15.68 229.51 0 193.2C14.55 159.51 48.43 175.26 60.45 140' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M500.46 140C529.04 92.19 517.98 52.57 560 45.82C617.75 36.53 626.9 89.89 700 107.92C766.9 124.42 779.53 138.88 840 114.87C915.41 84.92 904.91 54.85 971.76 0C974.91 -2.59 975.88 0 980 0C984.38 0 986.53 -3.64 988.75 0C1029.31 66.36 1068.28 82.04 1065.56 140C1063.9 175.37 1024.58 167.3 980 186.67C911.8 216.3 897.59 201.74 840 238C823.47 248.41 831.76 258.76 831.76 280C831.76 332.26 809.62 375.44 840 385C883.74 398.77 909.4 354.3 980 326.67C1043.57 301.8 1052.03 311.28 1108.33 280C1122.03 272.39 1115.92 264.96 1120 248.89C1133.7 194.96 1113.81 183.08 1143.9 140C1183.81 82.87 1201.95 94.23 1260 48.46C1290.73 24.23 1286.52 12.09 1321.46 0C1356.52 -12.14 1360.73 0 1400 0C1470 0 1499.52 -29.52 1540 0C1569.52 21.52 1565.34 68.95 1540 102.08C1511.81 138.95 1486.57 121.35 1432.94 140C1416.57 145.69 1414.39 141.34 1400 150.77C1327.92 198 1335.75 214.48 1260 253.33C1209.75 279.1 1158.26 244.34 1148 280C1134.28 327.68 1219.45 356.08 1212.05 420C1205.45 476.99 1177.33 493.64 1120 521.82C1061.3 550.67 1041.85 555.49 980 534.07C901.85 507 915.76 439.38 840 424.83C775.76 412.49 762.69 441.52 700 480.28C653.38 509.1 666.59 534.25 621.37 560C596.59 574.11 590.68 560 560 560C490 560 434 592.54 420 560C403.89 522.54 499.77 490 499.77 420C499.77 350 419.83 349.93 420 280C420.17 209.93 459.04 209.28 500.46 140' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M140 232.11C119.04 232.11 98.64 257.37 98.64 280C98.64 299.88 119.11 317.14 140 317.14C161.45 317.14 183.33 299.94 183.33 280C183.33 257.43 161.39 232.11 140 232.11' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1481.95 280C1496.94 225.19 1524.46 178.72 1540 178.72C1553.48 178.72 1540 229.36 1540 280C1540 350 1540 350 1540 420C1540 487.94 1543.01 489.58 1540 555.88C1539.83 559.58 1537.4 559.89 1533.64 560C1467.4 561.95 1466.82 560 1400 560C1374.65 560 1349.31 570.5 1349.31 560C1349.31 545.15 1376.19 536.05 1400 509.31C1438.53 466.05 1455.45 471.9 1474 420C1496.43 357.25 1463.94 345.83 1481.95 280' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M280 59.39C242.66 59.39 186.67 16.11 186.67 0C186.67 -13.59 233.34 0 280 0C292.4 0 304.81 -8.26 304.81 0C304.81 21.43 301.73 59.39 280 59.39' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M540.69 140C540.69 123.24 545.91 109.45 560 109.45C587.87 109.45 594.04 121.76 624.62 140C664.04 163.52 668.04 160.67 700 192.97C737.3 230.67 757.16 231.54 763.14 280C771.16 345.06 754.09 357.33 728 420C722.52 433.17 711.13 421.59 700 431.67C633.84 491.59 638.57 500.28 573.42 560C568.57 564.45 566.71 560 560 560C544.69 560 531.13 572.53 529.38 560C521.36 502.53 530.52 489.24 540.47 420C545.83 382.72 544.34 380.79 560 346.96C576.75 310.79 605.29 313.48 605.29 280C605.29 246.52 576.7 249.22 560 213.04C544.4 179.22 540.69 175.04 540.69 140' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1229.27 140C1229.27 127.07 1243.76 115.77 1260 115.77C1280.12 115.77 1302 126.87 1302 140C1302 153.98 1279.85 170 1260 170C1243.48 170 1229.27 154.19 1229.27 140' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1540 29.17C1493.05 29.17 1423.33 7.4 1423.33 0C1423.33 -7.18 1493.33 -11.67 1540 0C1551.67 2.92 1551.39 29.17 1540 29.17' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M0 263.2C5.75 263.2 9.62 271.52 19.09 280C79.62 334.2 80.42 333.37 140 388.57C155.98 403.37 170.2 403.8 170.2 420C170.2 437.42 160.67 446.43 140 455.81C75.57 485.05 45.78 508.95 0 497.24C-24.22 491.04 0 458.62 0 420C0 350 0 350 0 280C0 271.6 -3.8 263.2 0 263.2' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M266.67 280C266.67 268.86 272.3 255.65 280 255.65C288.62 255.65 299.31 269.37 299.31 280C299.31 287.91 289.08 292.73 280 292.73C272.76 292.73 266.67 287.4 266.67 280' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1524.63 280C1526.08 264.92 1535.88 253.19 1540 253.19C1543.57 253.19 1540 266.6 1540 280C1540 350 1540 350 1540 420C1540 436.47 1543.79 452.94 1540 452.94C1535.79 452.94 1525.59 437.93 1524 420C1517.91 351.46 1518.08 348.32 1524.63 280' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3cpath d='M918.14 420C918.14 398.38 945.65 391.61 980 379.7C1046.58 356.61 1061.67 337.23 1120 350C1153.72 357.38 1164.11 386.91 1164.11 420C1164.11 446.31 1149.42 460.92 1120 468.79C1057.37 485.55 1044.5 484.85 980 469.26C943.57 460.45 918.14 443.16 918.14 420' stroke='rgba(51%2c 121%2c 194%2c 0.18)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1002'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}

/* gradients */
.grad1tb {
	background-image: linear-gradient(to bottom, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1tb h5, .grad1tb h4, .grad1tb h3, .grad1tb h2, .grad1tb h1, .grad1tb p {
	color: var(--grad1-text);
}
.grad1tb svg g.logo {
  fill: var(--grad1-text); 
}

.grad1bt {
	background-image: linear-gradient(to top, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1bt h5, .grad1bt h4, .grad1bt h3, .grad1bt h2, .grad1bt h1, .grad1bt p {
	color: var(--grad1-text);
}
.grad1bt svg g.logo {
  fill: var(--grad1-text); 
}


.grad1rl {
	background-image: linear-gradient(to right, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1rl h5, .grad1rl h4, .grad1rl h3, .grad1rl h2, .grad1rl h1, .grad1rl p {
	color: var(--grad1-text);
}
.grad1rl svg g.logo {
  fill: var(--grad1-text); 
}


.grad1lr {
	background-image: linear-gradient(to left, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1lr h5, .grad1lr h4, .grad1lr h3, .grad1lr h2, .grad1lr h1, .grad1lr p {
	color: var(--grad1-text);
}
.grad1lr svg g.logo {
  fill: var(--grad1-text); 
}


.grad1trbl {
	background-image: linear-gradient(to right top, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1trbl h5, .grad1trbl h4, .grad1trbl h3, .grad1trbl h2, .grad1trbl h1, .grad1trbl p {
	color: var(--grad1-text);
}
.grad1trbl svg g.logo {
  fill: var(--grad1-text); 
}


.grad1bltr {
	background-image: linear-gradient(to left bottom, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1bltr h5, .grad1bltr h4, .grad1bltr h3, .grad1bltr h2, .grad1bltr h1, .grad1bltr p {
	color: var(--grad1-text);
}
.grad1bltr svg g.logo {
  fill: var(--grad1-text); 
}


.grad1tlbr {
	background-image: linear-gradient(to left top, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1tlbr h5, .grad1tlbr h4, .grad1tlbr h3, .grad1tlbr h2, .grad1tlbr h1, .grad1tlbr p {
	color: var(--grad1-text);
}
.grad1tlbr svg g.logo {
  fill: var(--grad1-text); 
}


.grad1brtl {
	background-image: linear-gradient(to right bottom, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1brtl h5, .grad1brtl h4, .grad1brtl h3, .grad1brtl h2, .grad1brtl h1, .grad1brtl p {
	color: var(--grad1-text);
}
.grad1brtl svg g.logo {
  fill: var(--grad1-text); 
}


.grad1radin {
	background-image: radial-gradient(circle, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1radin h5, .grad1radin h4, .grad1radin h3, .grad1radin h2, .grad1radin h1, .grad1radin p {
	color: var(--grad1-text);
}
.grad1radin svg g.logo {
  fill: var(--grad1-text); 
}


.grad1radout {
	background-image: radial-gradient(circle, var(--grad1-a), var(--grad1-b), var(--grad1-c), var(--grad1-d), var(--grad1-e));
}
.grad1radout h5, .grad1radout h4, .grad1radout h3, .grad1radout h2, .grad1radout h1, .grad1radout p {
	color: var(--grad1-text);
}
.grad1radout svg g.logo {
  fill: var(--grad1-text); 
}